Skip to content

Commit

Permalink
Fix param evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
jokay committed Dec 8, 2022
1 parent 84aa23d commit 5e27147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ENV LOXONE_USERNAME ""
ENV LOXONE_PASSWORD ""
ENV INTERVAL 86400
ENV KEEP_DAYS 30
ENV VERBOSE false

RUN apk add --update --no-cache \
tzdata \
Expand Down
2 changes: 1 addition & 1 deletion src/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fi

FTP_PARAMS=""

if [ "${VERBOSE}" ]; then
if [ "${VERBOSE}" = "true" ]; then
FTP_PARAMS="${FTP_PARAMS} -vvv"
fi

Expand Down

0 comments on commit 5e27147

Please sign in to comment.