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 75e4340 commit 4f74671Copy full SHA for 4f74671
src/browserbase/cli.py
@@ -13,7 +13,9 @@ def main(args: Optional[List[str]] = None) -> int:
13
14
# Execute the command
15
try:
16
- result = subprocess.run(args, check=True)
+ # Join arguments into a single string for shell execution
17
+ cmd = " ".join(args)
18
+ result = subprocess.run(cmd, shell=True, check=True)
19
return result.returncode
20
except subprocess.CalledProcessError as e:
21
print(f"Command failed with exit code {e.returncode}")
0 commit comments