Browse Source

entrypoint: unset no longer needed MYSQLDUMP_ARGS variable

Fabian Peter Hammerle 3 years ago
parent
commit
3019db1bdc
2 changed files with 3 additions and 0 deletions
  1. 2 0
      CHANGELOG.md
  2. 1 0
      entrypoint.sh

+ 2 - 0
CHANGELOG.md

@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ## [Unreleased]
+### Fixed
+- entrypoint: unset no longer needed `MYSQLDUMP_ARGS` variable
 
 ## [2.0.0] - 2021-04-11
 ### Added

+ 1 - 0
entrypoint.sh

@@ -20,5 +20,6 @@ if [ -z "$MYSQLDUMP_ARGS" ]; then
     mysqldump --help
     exit 1
 fi
+unset MYSQLDUMP_ARGS
 
 exec "$@"