mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
10 lines
248 B
Batchfile
10 lines
248 B
Batchfile
@echo off
|
|
setlocal
|
|
SET mypath=%~dp0
|
|
set script_dir=%mypath:~0,-1%
|
|
call build.bat
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
|
|
|
cd %script_dir%\app
|
|
call .\node_modules\.bin\electron.cmd . --env dev --log-level debug --no-welcome --open-dev-tools "$@"
|