mirror of
https://github.com/Hmbown/DeepSeek-TUI.git
synced 2026-09-03 06:50:13 +08:00
The zip already shipped codewhale.bat (where wt, then the exe). NSIS only copied the exes, so a Start Menu launch still used the raw binary (#1854). Install the same launcher into bin, pin a current-user shortcut at it, and delete both on uninstall. Verified: node --test scripts/release/assemble-release-assets.test.js (7/7) and makensis compiled a test installer.
9 lines
164 B
Batchfile
9 lines
164 B
Batchfile
@echo off
|
|
set NO_ANIMATIONS=1
|
|
where wt >nul 2>nul
|
|
if "%ERRORLEVEL%"=="0" (
|
|
wt --title Codewhale cmd /k "%~dp0codewhale.exe"
|
|
) else (
|
|
"%~dp0codewhale.exe"
|
|
)
|