summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatharina Drexel <katharina.drexel@bfh.ch>2020-08-28 13:56:02 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2020-08-28 18:19:14 +0000
commitd00d0549bd9eaa65d00a3cf3795aa59cbb6ee4b3 (patch)
tree7b20af633c3ffb886c006628283dc4ca2346bbc2
parentAdding run comment in version command. (diff)
downloadcompute-tools-d00d0549bd9eaa65d00a3cf3795aa59cbb6ee4b3.tar.xz
compute-tools-d00d0549bd9eaa65d00a3cf3795aa59cbb6ee4b3.zip
Fixing 'cnt remove' error when executed in directory /usr/lib/open-infrastructure/container.
Signed-off-by: Katharina Drexel <katharina.drexel@bfh.ch> Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-xlib/container/remove2
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)