-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
32 lines (28 loc) · 774 Bytes
/
Copy pathrun.bat
File metadata and controls
32 lines (28 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo off
echo Running DevNullifier - Built Version
echo.
if not exist "dist" (
echo Error: Application not built yet!
echo Please run build.bat first to build the application.
echo.
pause
exit /b 1
)
echo Looking for executable in dist folder...
echo.
rem Look for the executable in common locations
if exist "dist\win-unpacked\DevNullifier.exe" (
echo Starting DevNullifier...
start "" "dist\win-unpacked\DevNullifier.exe"
) else if exist "dist\DevNullifier.exe" (
echo Starting DevNullifier...
start "" "dist\DevNullifier.exe"
) else (
echo Could not find the built executable.
echo Please check the dist folder manually.
echo.
explorer dist
)
echo.
echo If the application doesn't start, check the dist folder for the executable.
pause