improved i/o handling on the run executable means this is no longer relevant

This commit is contained in:
Wryn (yage) Wagner 2024-02-12 23:41:42 -07:00
parent 05694ed022
commit 8bcc99b898

View File

@ -8,15 +8,13 @@ use scwrypts/run
#####################################################################
SCWRYPTS__RUN() {
SCWRYPTS__RUN() { # context wrapper to run scwrypts within scwrypts
local EXIT_CODE=0
((SUBSCWRYPT+=1))
echo "--- START SUBSCWRYPT=$SUBSCWRYPT $@"
SUBSCWRYPT=$SUBSCWRYPT $SCWRYPTS_ROOT/run $@
EXIT_CODE=$?
((SUBSCWRYPT-=1))
return $EXIT_CODE
echo "--- END SUBSCWRYPT=$SUBSCWRYPT $@"
}