From 42662e28abfc4dc3a8001316cda5b8514e0bb2ea Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 30 Jun 2017 03:39:12 +0200 Subject: =?UTF-8?q?Correcting=20boolean=20typo=20when=20checking=20for=20e?= =?UTF-8?q?xistence=20of=20new=20container=20in=20container=20move=20comma?= =?UTF-8?q?nd,=20thanks=20to=20Simon=20Sp=C3=B6hel=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Baumann --- lib/container/move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/container/move b/lib/container/move index 4d64c8a..3cc2e40 100755 --- a/lib/container/move +++ b/lib/container/move @@ -89,7 +89,7 @@ then exit 1 fi -if [ ! -e "${MACHINES}/${NEW}" ] +if [ -e "${MACHINES}/${NEW}" ] then echo "'${NEW}': container already exists" >&2 exit 1 -- cgit v1.2.3