fix error in worktree, direnv allow

This commit is contained in:
sloane 2024-03-15 08:07:05 -04:00
parent 25e362622e
commit 26c345069d

View file

@ -24,7 +24,7 @@ function worktree
# end # end
# Elixir projects # Elixir projects
if test -e "mix.exs" and if test -e "mix.exs"
if test -d "_build" if test -d "_build"
cp -cR _build ../$dirname/ cp -cR _build ../$dirname/
end end
@ -42,4 +42,5 @@ function worktree
end end
cd ../$dirname cd ../$dirname
direnv allow
end end