lib changed to headers

This commit is contained in:
C
2023-02-09 18:40:11 +05:00
parent 036d91a630
commit 895e3b6baa
4 changed files with 14 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
import subprocess
def run_command(cmd, directory):
command = subprocess.run(["powershell", "-Command", cmd], cwd=directory, shell=True, check=True)
return command
def run_command_no_dir(cmd):
command = subprocess.run(["powershell", "-Command", cmd], shell=True, check=True)
return command