From 395e8cef6b78e89d10eb78ad7da866d9899e0730 Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Thu, 11 Nov 2021 14:59:33 -0500 Subject: [PATCH] _setPATH_ no longer fails if path not found --- template_standalone.sh | 2 +- utilities/template_utils.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/template_standalone.sh b/template_standalone.sh index 0fe21e0..b6ee05c 100755 --- a/template_standalone.sh +++ b/template_standalone.sh @@ -411,7 +411,7 @@ _setPATH_() { fi else debug "_setPATH_: can not find: ${_newPath}" - return 0 + continue fi done return 0 diff --git a/utilities/template_utils.bash b/utilities/template_utils.bash index d40fb9e..3836a15 100644 --- a/utilities/template_utils.bash +++ b/utilities/template_utils.bash @@ -114,7 +114,7 @@ _setPATH_() { fi else debug "_setPATH_: can not find: ${_newPath}" - return 0 + continue fi done return 0