We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec66597 commit 23e3bcdCopy full SHA for 23e3bcd
tests/initial_tox_test.py
@@ -8,7 +8,7 @@
8
9
10
def run_command(command): # 리눅스 명령어 실행
11
- result = subprocess.run(command, shell=True, capture_output=True, text=True)
+ result = subprocess.run(command, capture_output=True, text=True)
12
success = result.returncode == 0
13
output = result.stdout if success else result.stderr
14
return success, output
0 commit comments