From 2435b99328f4e35d1f0a419af53516e9aa4b2ae9 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 2 Aug 2019 00:06:44 +0200 Subject: [PATCH] [DEBUG] correct the command actions --- island/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/island/commands.py b/island/commands.py index ec2faaa..1c742b0 100644 --- a/island/commands.py +++ b/island/commands.py @@ -306,7 +306,7 @@ def clone(path_repository, address, branch_name = None, origin=None): cmd += " --branch " + branch_name if origin != None and origin == "": cmd += " --origin " + origin - if path_repository != None and path_repository == "": + if path_repository != None and path_repository != "": cmd += " " + path_repository debug.verbose("execute : " + cmd) if os.path.exists(path_repository) == True: