-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdbb5f8
commit 1a56995
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@ECHO OFF | ||
set "pycommand=py -3" | ||
set "op_file=%~dp0zconfig/NSCB_options.cmd" | ||
setlocal | ||
if exist "%op_file%" call "%op_file%" | ||
endlocal & ( | ||
set "pycommand=%pycommand%" | ||
) | ||
|
||
call :program_logo | ||
ECHO. | ||
ECHO Installing dependencies | ||
ECHO. | ||
%pycommand% -m pip install urllib3 unidecode tqdm bs4 tqdm requests image pywin32 | ||
ECHO. | ||
ECHO. Check if dependencies were installed correctly before exiting the .bat file. | ||
PAUSE | ||
exit | ||
|
||
:program_logo | ||
|
||
ECHO __ _ __ __ | ||
ECHO ____ _____ ____ / /_ __ __(_) /___/ /__ _____ | ||
ECHO / __ \/ ___/ ___/ / __ \/ / / / / / __ / _ \/ ___/ | ||
ECHO / / / (__ ) /__ / /_/ / /_/ / / / /_/ / __/ / | ||
ECHO /_/ /_/____/\___/____/_.___/\__,_/_/_/\__,_/\___/_/ | ||
ECHO /_____/ | ||
ECHO ------------------------------------------------------------------------------------- | ||
ECHO NINTENDO SWITCH CLEANER AND BUILDER | ||
ECHO ------------------------------------------------------------------------------------- | ||
ECHO ============================= BY JULESONTHEROAD ============================= | ||
ECHO ------------------------------------------------------------------------------------- | ||
ECHO " POWERED WITH NUT BY BLAWAR " | ||
ECHO " AND LUCA FRAGA'S HACBUILD " | ||
ECHO ------------------------------------------------------------------------------------- | ||
ECHO Program's github: https://github.com/julesontheroad/NSC_BUILDER | ||
ECHO Revised hacbuild: https://github.com/julesontheroad/hacbuild | ||
ECHO Blawar's NUT : https://github.com/blawar/nut | ||
ECHO ------------------------------------------------------------------------------------- | ||
exit /B |