Compare commits

..

1 commit

Author SHA1 Message Date
ZoopaMario fad0b9d526 Refactor code to make linter runs succeed
All checks were successful
Lint Bash Scripts / lint-bash (push) Successful in 21s
Check Commit Messages / check-commit-message (pull_request) Successful in 13s
Lint Bash Scripts / lint-bash (pull_request) Successful in 23s
This commit refactors the codebase in order to make the shellcheck
workflow pass.
2024-12-29 15:47:04 +01:00

View file

@ -12,7 +12,7 @@ SOURCE_DIR="/volumes/portainer"
# Stop portainer container # Stop portainer container
log "Stopping portainer container..." log "Stopping portainer container..."
docker stop "$APP_CONTAINER" || { log "Error: Failed to stop portainer."; exit 1; } docker stop $APP_CONTAINER || { log "Error: Failed to stop portainer."; exit 1; }
# Backup all files to target destination # Backup all files to target destination
log "Backing up portainer files (including the SQLite database)..." log "Backing up portainer files (including the SQLite database)..."