summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer/assets/windows-install.bat
blob: 2cc54e8044473d4b67ecbd035beb984d0d63de15 (plain)
1
2
3
4
5
6
7
8
@echo off
echo %~dp0 | findstr /C:"%TEMP%" 1>nul
if not errorlevel 1 (
   echo Oops! It looks like you're running the installer from inside a zip file. Make sure you unzip the download first.
   pause
) else (
   start /WAIT /B ./internal/windows-install.exe
)