From fc55cbe45098bf03fbc8735a80a882d6d80ab920 Mon Sep 17 00:00:00 2001 From: DevilXD Date: Wed, 7 Dec 2022 07:27:09 +0100 Subject: [PATCH] Accidentally staged this file --- run_dev.bat | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 run_dev.bat diff --git a/run_dev.bat b/run_dev.bat deleted file mode 100644 index b2d4e75..0000000 --- a/run_dev.bat +++ /dev/null @@ -1,36 +0,0 @@ -@echo off -set /p "choice=Install PyInstaller so you can build an EXEcutable? (y/n) " -set dirpath=%~dp0 -if "%dirpath:~-1%" == "\" set dirpath=%dirpath:~0,-1% -git --version > nul -if %errorlevel% NEQ 0 goto NOGIT -if not exist "%dirpath%\env" ( - echo: - echo Creating the env folder... - python -m venv "%dirpath%\env" - if %errorlevel% NEQ 0 goto NOPYTHON -) -echo: -echo Installing requirements.txt... -"%dirpath%\env\scripts\pip" install wheel -"%dirpath%\env\scripts\pip" install -r "%dirpath%\requirements.txt" -echo: -echo Installing PyInstaller... -if "%choice%" == "y" "%dirpath%\env\scripts\pip" install pyinstaller -"%dirpath%\env\scripts\python" "%dirpath%\env\scripts\pywin32_postinstall.py" -install -silent -goto DONE -:NOPYTHON -echo: -echo No python executable found in path! -pause -goto END -:NOGIT -echo: -echo No git executable found in path! -pause -goto END -:DONE -echo: -echo All done! -pause -:END