diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-08-30 13:47:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-08-30 13:47:24 +0000 |
commit | 335889000fb2fd3b912ff759226e2f071f377e8e (patch) | |
tree | ea5c13319b9115c55db7a9e49365dd1902c1ad30 /lib/container/remove | |
parent | Adding upstream version 20200121. (diff) | |
download | open-infrastructure-compute-tools-335889000fb2fd3b912ff759226e2f071f377e8e.tar.xz open-infrastructure-compute-tools-335889000fb2fd3b912ff759226e2f071f377e8e.zip |
Adding upstream version 20200830.upstream/20200830
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/container/remove')
-rwxr-xr-x | lib/container/remove | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container/remove b/lib/container/remove index 404b80d..208de3d 100755 --- a/lib/container/remove +++ b/lib/container/remove @@ -171,7 +171,7 @@ case "${FORCE}" in echo -n "'${NAME}': remove container '${NAME}' [y|N]? " read FORCE - FORCE="$(echo ${FORCE} | tr [A-Z] [a-z])" + FORCE="$(echo ${FORCE} | tr '[A-Z]' '[a-z]')" case "${FORCE}" in y|yes) |