7 lines
152 B
Batchfile
7 lines
152 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
if exist "bin" rmdir /s /q "bin"
|
|
mkdir "bin"
|
|
"%NSIS3_HOME%\makensis.exe" /V4 /INPUTCHARSET UTF8 post-install-launcher.nsi
|
|
pause
|