Searched refs:execution_path (Results 1 – 2 of 2) sorted by relevance
36 def run_command(cmd, execution_path, input_arguments): argument37 print(" ".join(cmd) + " | execution_path: " + execution_path)38 proc = subprocess.Popen(cmd, cwd=execution_path, stdout=subprocess.PIPE)
55 def run_command(cmd, execution_path): argument56 print(" ".join(cmd) + " | execution_path: " + execution_path)57 proc = subprocess.Popen(cmd, cwd=execution_path)