Accept profile statements from arguments by default

This commit is contained in:
Manuel Thalmann 2024-03-25 01:22:36 +01:00
parent 1c3204f99e
commit 03c83a45a7

View file

@ -4,11 +4,11 @@ function addProfileStatement() {
shellBin="$3"; shellBin="$3";
profileRoot="$4"; profileRoot="$4";
if [ -t 1 ] if [ ! -z "${@:5}" ]
then then
statement="$(cat)";
else
statement="${@:5}"; statement="${@:5}";
else
statement="$(cat)";
fi; fi;
contextRoot="$(mktemp -d)"; contextRoot="$(mktemp -d)";