Drop legacy PSLauncher.exe backward compat (not in prod yet)
Simplifies the rename done in ce3979d : PS_Launcher.exe is the only
name. Removes the dual-path lookup in LauncherSelfUpdater, the
duplicated taskkill blocks in the .bat scripts, the legacy patterns
in .gitignore, and the explanatory comments about the migration.
Cleaner code, single source of truth for the binary name.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,15 +1,11 @@
|
||||
@echo off
|
||||
REM Build du launcher principal (PS_Launcher.exe).
|
||||
REM Sortie : C:\ASTERION\GIT\PS_Launcher\PS_Launcher.exe (~78 Mo single-file self-contained)
|
||||
REM Renommé v0.14.0 : avant c'etait PSLauncher.exe. On taskkill les deux noms
|
||||
REM pour gerer les deux generations d'install (legacy + nouvelle).
|
||||
|
||||
setlocal
|
||||
set "REPO=%~dp0"
|
||||
echo.
|
||||
echo ==^> Termine les eventuelles instances de PSLauncher / PS_Launcher qui verrouilleraient les .exe
|
||||
taskkill /F /IM PSLauncher.exe /T >nul 2>&1
|
||||
taskkill /F /IM PSLauncher.Updater.exe /T >nul 2>&1
|
||||
echo ==^> Termine les eventuelles instances de PS_Launcher qui verrouilleraient les .exe
|
||||
taskkill /F /IM PS_Launcher.exe /T >nul 2>&1
|
||||
taskkill /F /IM PS_Launcher.Updater.exe /T >nul 2>&1
|
||||
echo.
|
||||
|
||||
Reference in New Issue
Block a user