mirror of
https://github.com/BrianPugh/gnwmanager.git
synced 2025-12-05 13:15:58 +01:00
10 lines
117 B
Python
10 lines
117 B
Python
import subprocess
|
|
|
|
|
|
def main():
|
|
subprocess.check_output(["make", "-j4"])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|