mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
15 lines
362 B
Python
Executable File
15 lines
362 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import subprocess
|
|
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
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
if is_master_repository:
|
|
sys.exit(0)
|
|
else:
|
|
sys.exit(-1)
|