Fixed bash else syntax

This commit is contained in:
Manuel Palenzuela 2019-10-22 01:16:00 +01:00
parent 797f8e8cb1
commit c17df9b011

View file

@ -14,7 +14,7 @@ run_modules(){
[[ ! "$OUTPUT" = "" ]] && OUTPUT="$OUTPUT$SEPARATOR"
if [[ -f "$CUSTOM_DIR$module" ]]; then
OUTPUT="$OUTPUT$(exec $CUSTOM_DIR$module)"
elif
else
OUTPUT="$OUTPUT$(exec $MODULES_DIR$module)"
fi
done