From 6513755670892983db88a6633b8c1ea6019c03d1 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Fri, 15 Nov 2024 14:55:37 -0500 Subject: Re-namespace some stuff to Omni I was getting confused about what is a product and what is internal infrastructure; I think it is good to keep those things separate. So I moved a bunch of stuff to an Omni namespace, actually most stuff went there. Only things that are explicitly external products are still in the Biz namespace. --- .envrc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to '.envrc') diff --git a/.envrc b/.envrc index 7e9583e..f342995 100644 --- a/.envrc +++ b/.envrc @@ -7,8 +7,8 @@ # watch some files that effect the dev environment # watch_file shell.nix # watch_file default.nix -# watch_file Biz/Bild.nix -# watch_file Biz/Bild.hs +# watch_file Omni/Bild.nix +# watch_file Omni/Bild.hs # if direnv doesn't detect changes to the nix environment, just touch .envrc and # it will refresh use nix @@ -17,7 +17,7 @@ export COLUMNS # # scripts for editing go here - PATH_add $CODEROOT/Biz/Ide + PATH_add $CODEROOT/Omni/Ide # # executable bild outputs go here PATH_add $CODEROOT/_/bin @@ -40,15 +40,15 @@ fi # # configure git - git config --local core.hooksPath "$CODEROOT/Biz/Ide/hooks" + git config --local core.hooksPath "$CODEROOT/Omni/Ide/hooks" git config --local notes.displayRef refs/notes/ci git config --local remotes.origin.fetch +refs/notes/*:refs/notes/* notes git config --local branchless.test.strategy worktree git config --local branchless.test.alias.default 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild --test **/*' git config --local branchless.test.alias.bild 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild **/*' - git config --local branchless.test.alias.lint 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Biz/Lint.hs; lint **/*' - git config --local branchless.test.alias.lintfix 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Biz/Lint.hs; lint --fix **/*' - git config --local branchless.test.alias.ci 'export CI=1; git clean -ffdx; eval $(direnv export bash); Biz/Ci.sh' + git config --local branchless.test.alias.lint 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Omni/Lint.hs; lint **/*' + git config --local branchless.test.alias.lintfix 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Omni/Lint.hs; lint --fix **/*' + git config --local branchless.test.alias.ci 'export CI=1; git clean -ffdx; eval $(direnv export bash); Omni/Ci.sh' # # end here if we are in CI [[ -n "CI" ]] && exit 0 @@ -56,7 +56,7 @@ # create third-party tags [[ -L "$CODEROOT"/_/src/.ctags.d ]] || ln -s "$CODEROOT"/.ctags.d "$CODEROOT"/_/src/.ctags.d function MakeExternalTags { - "$CODEROOT"/Biz/Ide/MakeTags.py --external $(tr ':' '\n' <<< "$ALL_SOURCES") + "$CODEROOT"/Omni/Ide/MakeTags.py --external $(tr ':' '\n' <<< "$ALL_SOURCES") } hashfile="$CODEROOT"/_/src/hash curhash=$(cat "$hashfile") -- cgit v1.2.3