File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -116,11 +116,13 @@ jobs:
116
116
echo === Running BuildInstaller.bat ===
117
117
call .\BuildInstaller.bat || echo WARNING: BuildInstaller.bat exited with %ERRORLEVEL%, continuing...
118
118
echo === Verifying MSI ===
119
- if not exist "UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi" (
119
+ if exist "UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi" (
120
+ echo Success: MSI found at UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi
121
+ exit /b 0
122
+ ) else (
120
123
echo ERROR: MSI not found in UnityLauncherProInstaller\Release
121
124
exit /b 1
122
125
)
123
- echo Success: MSI found at UnityLauncherProInstaller\Release\UnityLauncherPro-Installer.msi
124
126
125
127
# Get the current date and time
126
128
- name : Get current date and time
You can’t perform that action at this time.
0 commit comments