force flag must be exported

This commit is contained in:
Jérémy Lecour 2021-06-30 14:56:09 +02:00 committed by Jérémy Lecour
parent ec4502ef9b
commit b8f0a377d9
2 changed files with 3 additions and 1 deletions

View file

@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
* force flag must be exported
### Security ### Security
## [2.10.0] - 2021-06-29 ## [2.10.0] - 2021-06-29

2
bkctld
View file

@ -51,7 +51,7 @@ while :; do
exit 0 exit 0
;; ;;
-f|--force) -f|--force)
FORCE=1 export FORCE=1
;; ;;
*) *)
# Default case: If no more options then break out of the loop. # Default case: If no more options then break out of the loop.