forked from licn9901-arch/deepseek-harness-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.cmd
More file actions
27 lines (22 loc) · 705 Bytes
/
Copy pathdev.cmd
File metadata and controls
27 lines (22 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
setlocal
cd /d "%~dp0"
title DeepSeek Harness Desktop - Dev
where node >nul 2>nul || (echo [ERROR] Node.js not found in PATH & goto :fail)
where cargo >nul 2>nul || (echo [ERROR] Rust toolchain not found. Install via https://rustup.rs & goto :fail)
echo Validating fixed whale icon assets...
pwsh -NoProfile -ExecutionPolicy Bypass -File "scripts\validate-icons.ps1"
if errorlevel 1 goto :fail
if not exist "node_modules\.bin\tauri.cmd" (
call npm ci
if errorlevel 1 goto :fail
)
echo Starting debug build + app. First run compiles ~400 crates (10-30 min).
call npx tauri dev
if errorlevel 1 goto :fail
exit /b 0
:fail
echo.
echo Aborted. Fix the error above and rerun.
pause
exit /b 1