Skip to content

Commit

Permalink
Fix BACKUP_ON_START (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Minituff authored Oct 20, 2023
1 parent 6570d9a commit a3942a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ if [ ! -z "$REPORT_FILE_LOG_LEVEL" ]; then
logThis "REPORT_FILE_LOG_LEVEL: $REPORT_FILE_LOG_LEVEL" "DEBUG" "init"
fi

if [ ! -z "$BACKUP_ON_START" ]; then
if [ "$BACKUP_ON_START" = "true" ]; then
logThis "BACKUP_ON_START: $BACKUP_ON_START" "DEBUG" "init"
bash ./app/backup.sh
fi
Expand Down

0 comments on commit a3942a4

Please sign in to comment.