evobackupctl: fix args check

This commit is contained in:
Jérémy Lecour 2024-04-30 09:53:28 +02:00 committed by Jérémy Lecour
parent 288d61d6b9
commit 939ced46c2
Signed by: jlecour
SSH key fingerprint: SHA256:h+5LgHRKwN9lS0SsdVR5yZPeFlJE4Mt+8UtL4CcP8dY
2 changed files with 3 additions and 1 deletions

View file

@ -21,6 +21,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
### Fixed
* evobackupctl: quote ARGS variable for options parsing.
### Security
## [24.04]

View file

@ -92,7 +92,7 @@ copy_template() {
main() {
# If no argument is provided, print help and exit
# shellcheck disable=SC2086
if [ -z ${ARGS} ]; then
if [ -z "${ARGS}" ]; then
show_help
exit 0
fi