Skip to content

Commit

Permalink
close instead of input val
Browse files Browse the repository at this point in the history
  • Loading branch information
TNTwise committed Oct 20, 2024
1 parent ef8cd9b commit d868936
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 134 deletions.
129 changes: 0 additions & 129 deletions backend/src/ConvertModels.py

This file was deleted.

8 changes: 3 additions & 5 deletions src/DownloadDeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,9 @@ def downloadVCREDLIST(self):
)
# give executable permissions to ffmpeg
makeExecutable(vcTempPath)
while True:
if run_executable([vcTempPath, '/install', '/quiet', '/norestart']): #keep trying until user says yes
break
else:
RegularQTPopup("Please install click yes to allow VCRedlist to install!")
if not run_executable([vcTempPath, '/install', '/quiet', '/norestart']): #keep trying until user says yes
RegularQTPopup("Please click yes to allow VCRedlist to install!\nThe installer will now close.")


def downloadPython(self):
link = "https://github.com/indygreg/python-build-standalone/releases/download/20240814/cpython-3.11.9+20240814-"
Expand Down

0 comments on commit d868936

Please sign in to comment.