From d6494ae8984d244803c081e259e4c3e3426ada78 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 28 Aug 2020 20:21:47 +0200 Subject: Fixing one more occurence of wrong tr usage in container move command. Signed-off-by: Daniel Baumann --- lib/container/move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3