From 8bcc99b8986acf81222d0c616142b79f363ff720 Mon Sep 17 00:00:00 2001 From: yage Date: Mon, 12 Feb 2024 23:41:42 -0700 Subject: [PATCH] improved i/o handling on the run executable means this is no longer relevant --- zsh/lib/scwrypts/meta.module.zsh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zsh/lib/scwrypts/meta.module.zsh b/zsh/lib/scwrypts/meta.module.zsh index dc82c0c..1f8fb8a 100644 --- a/zsh/lib/scwrypts/meta.module.zsh +++ b/zsh/lib/scwrypts/meta.module.zsh @@ -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 $@" }