diff options
Diffstat (limited to 'apps/bash_shared/common.sh')
-rw-r--r-- | apps/bash_shared/common.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/bash_shared/common.sh b/apps/bash_shared/common.sh index baeaae86c7..ed0859319c 100644 --- a/apps/bash_shared/common.sh +++ b/apps/bash_shared/common.sh @@ -15,9 +15,9 @@ fi for entry in "$AC_PATH_MODULES/"*/include.sh do - if [ -e $entry ]; then - source $entry + if [ -e "$entry" ]; then + source "$entry" fi done -ACORE_VERSION=$("$AC_PATH_DEPS/jsonpath/JSONPath.sh" -f $AC_PATH_ROOT/acore.json -b '$.version')
\ No newline at end of file +ACORE_VERSION=$("$AC_PATH_DEPS/jsonpath/JSONPath.sh" -f "$AC_PATH_ROOT/acore.json" -b '$.version') |