Files
DeepSeek-TUI/scripts/installer/codewhale.bat
CodeWhale Bot 639cfb1149 fix(release): give the Windows installer a Terminal-aware Start Menu shortcut
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.
2026-08-18 21:26:10 -07:00

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"
)