Fix wrong exit in autoinstall/before.sh

This commit is contained in:
Tobias Reisinger 2024-01-12 03:14:51 +01:00
parent 7934e32b27
commit 236e648434
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
2 changed files with 2 additions and 2 deletions

2
.envrc
View file

@ -1,3 +1,3 @@
use nix
printf '\nPlease set and export $BASHLY_SOURCE_DIR\n\n'
export BASHLY_SOURCE_DIR=$(cat .target)

View file

@ -5,7 +5,7 @@ action=${action:?}
# if action is run or completions, do nothing
if [ "$action" = "run" ] || [ "$action" = "completions" ]
then
exit 0
return
fi
clean=${args[--clean]:-}