fix: pass shellcheck

This commit is contained in:
Jose Diaz-Gonzalez
2017-02-20 19:35:15 -07:00
parent f1897c7a86
commit f5cce3c3a3

View File

@@ -7,7 +7,7 @@ fn-docker-options() {
declare APP="$1" PHASE="$2"
local PHASE_FILE="$(fn-get-phase-file-path "$APP" "$PHASE")"
if [[ -r "$PHASE_FILE" ]]; then
cat "$PHASE_FILE" | tr '\n' ' '
tr '\n' ' ' < "$PHASE_FILE"
fi
}