mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-08 07:03:57 +01:00
15 lines
370 B
Python
15 lines
370 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import subprocess
|
||
|
pipe = subprocess.Popen("git config --local --get remote.origin.url", \
|
||
|
shell=True, stdout=subprocess.PIPE)
|
||
|
result = pipe.stdout.read()
|
||
|
is_master_repository = "LCPQ/quantum_package" in result
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
import sys
|
||
|
if is_master_repository:
|
||
|
sys.exit(0)
|
||
|
else:
|
||
|
sys.exit(-1)
|