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 e46c8fb commit c2e60b5Copy full SHA for c2e60b5
scripts/install.py
@@ -1,6 +1,7 @@
1
import datetime
2
import os
3
import subprocess
4
+import sys
5
import time
6
import questionary
7
import requests
@@ -243,6 +244,8 @@ def run_install(answers: dict):
243
244
stdin=subprocess.DEVNULL
245
command = ['nohup'] + command
246
command += args.split()
247
+ run_args = sys.argv[1:]
248
+ command += run_args
249
250
print(command)
251
scripts/install.sh
@@ -93,7 +93,7 @@ if [ "${mode}" = "none" ] && [ "$backup" = "none" ]; then # no mode or backup w
93
python3 -m pip install --upgrade pip
94
fi
95
pip3 install questionary==2.1.0 --break-system-packages
96
- python3 install.py
+ python3 install.py "$@"
97
pip3 uninstall questionary -y
98
exit
99
0 commit comments