diff options
Diffstat (limited to 'bar.sh')
-rwxr-xr-x | bar.sh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -45,8 +45,10 @@ run_module() out="$($MODULES_DIR$1)" fi - [[ ! "$out" = "" ]] && out="$out$SEPARATOR." - echo "$out" > "$OUTPUT_CACHE$module" + if [[ ! "$out" = "" ]]; then + out="$out$SEPARATOR." + echo "$out" > "$OUTPUT_CACHE$module" + fi } run() |