Lines Matching refs:command
74 def execute_shell_command(command: str):
75 process = subprocess.Popen(command, shell=False)
79 def execute_shell_command_add(command: list):
80 for file in glob.glob(command[-1]):
81 command[-1] = file
82 process = subprocess.Popen(command, shell=False)
87 command = ['git', 'clone', repository_url, destination_path]
89 subprocess.run(command, check=True, shell=False)
91 subprocess.run(command, check=True)
95 command = ['git', 'checkout', commit_hash]
96 subprocess.run(command, cwd=destination_path)
112 command = ['bash', script_path] + args
113 process = subprocess.Popen(command, stdout=subprocess.PIPE,