summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2020-08-28 18:21:47 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2020-08-28 18:21:47 +0000
commitd6494ae8984d244803c081e259e4c3e3426ada78 (patch)
treebc71d302103850c01d2622a0b40238ffc72aa83a
parentFixing 'cnt remove' error when executed in directory /usr/lib/open-infrastruc... (diff)
downloadcompute-tools-d6494ae8984d244803c081e259e4c3e3426ada78.tar.xz
compute-tools-d6494ae8984d244803c081e259e4c3e3426ada78.zip
Fixing one more occurence of wrong tr usage in container move command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-xlib/container/move2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/container/move b/lib/container/move
index cdabbe4..377bd7c 100755
--- a/lib/container/move
+++ b/lib/container/move
@@ -117,7 +117,7 @@ case "${FORCE}" in
echo -n "'${OLD}': rename container to '${NEW}' [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)