mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
14 lines
292 B
Batchfile
14 lines
292 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set "SCRIPT_DIR=%~dp0"
|
|
set "RESOURCES_DIR=%SCRIPT_DIR%.."
|
|
set "APP_EXECUTABLE=%RESOURCES_DIR%\..\Paseo.exe"
|
|
if not exist "%APP_EXECUTABLE%" (
|
|
echo Bundled Paseo executable not found at %APP_EXECUTABLE% 1>&2
|
|
exit /b 1
|
|
)
|
|
|
|
set "PASEO_DESKTOP_CLI=1"
|
|
"%APP_EXECUTABLE%" %*
|