diff options
Diffstat (limited to '')
-rwxr-xr-x | lib/container/move | 2 |
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) |