From 27eb074c26278bb1d280775fef962fff87df5256 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Fri, 13 Nov 2015 09:36:04 +0100 Subject: [PATCH] Removed git --local in is_master_repository.py --- scripts/utility/is_master_repository.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utility/is_master_repository.py b/scripts/utility/is_master_repository.py index 9ead14a2..da5fb56f 100755 --- a/scripts/utility/is_master_repository.py +++ b/scripts/utility/is_master_repository.py @@ -1,7 +1,7 @@ #!/usr/bin/env python import subprocess -pipe = subprocess.Popen("git config --local --get remote.origin.url", \ +pipe = subprocess.Popen("git config --get remote.origin.url", \ shell=True, stdout=subprocess.PIPE) result = pipe.stdout.read() is_master_repository = "LCPQ/quantum_package" in result