New start script system

This commit is contained in:
BarsTiger
2022-02-28 16:31:48 +02:00
parent 7fe161fc42
commit 8761dddd71
5 changed files with 12 additions and 13 deletions

View File

@@ -56,8 +56,8 @@ def upload(is_gui=False, ui=None):
source_url = input('> ')
source_url = None if source_url == '' else source_url
print('If your app needs any dependencies, please paste its link here. It can be exe of installer from official '
'site. If you don\'t want to add it, just press Enter')
print('If your app needs any dependencies, please paste its link here. It can be exe of installer from official'
' site. If you don\'t want to add it, just press Enter')
download = None
while download is None:
download = input('> ')
@@ -73,8 +73,9 @@ def upload(is_gui=False, ui=None):
install = input('> ')
install = None if install == '' else install
print('Please specify main executable command. It can be executable file name (some-file.exe) or command, that '
'launches your script (python some-file.py, etc)')
print('Please specify main executable command. It can be executable file name ($appdir$\\some-file.exe) or '
'command, that launches your script (python $appdir$\\some-file.py, etc). $appdir$ will be replaced '
'with application directory. It is nessesary to add!')
run = None
while run is None:
run = input('> ')