Run script not eval (otherwise the script rewrites itself while auto-updating and hell ensues)

This commit is contained in:
southerntofu 2020-04-17 22:57:18 -04:00
parent a8bc652d93
commit 0c6cae2973
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ echo "$branch"
git pull
[[ $? != 0 ]] && echo "[$p_name] PULL FAILED" && exit 1
echo "[$p_name] RUN"
GITBUILDDIR="$BASEDIR" eval "$BASEDIR/$p_name $p_name"
GITBUILDDIR="$BASEDIR" $BASEDIR/$p_name $p_name
fi
done