Skip to content

Commit

Permalink
Update package_installer.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarxzer authored Mar 15, 2024
1 parent 0c29c1d commit 4afd197
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package_installer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ rem Check if Node.js is installed
where node >nul 2>nul
if %errorlevel% neq 0 (
echo Node.js is not installed. Please install Node.js before running this script.
pause
exit /b 1
)

rem Check if npm is installed
where npm >nul 2>nul
if %errorlevel% neq 0 (
echo npm is not installed. Please install npm before running this script.
pause
exit /b 1
)

Expand All @@ -31,4 +33,5 @@ for %%i in (%package_names%) do (
)
)

pause
endlocal

0 comments on commit 4afd197

Please sign in to comment.