File size: 353 Bytes
676f5d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | @echo off
REM Writes a Desktop shortcut that cds to this repo, then starts the UI.
setlocal
set "HERE=%~dp0"
cd /d "%HERE%.."
set "ROOT=%CD%"
set "DEST=%USERPROFILE%\Desktop\Receipt Studio.bat"
> "%DEST%" (
echo @echo off
echo cd /d "%ROOT%"
echo call "%ROOT%\scripts\start-ui.bat"
)
echo Wrote %DEST%
echo Double-click Desktop\Receipt Studio.bat
|