Skip to content

Commit 6dbde67

Browse files
Fix postinstall script breaking on Linux (backtick in shell)
Backticks in the postinstall node -e string were interpreted as shell command substitution on Linux/sh, causing SyntaxError on npm install. Removed backticks from the tip message. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6f17c30 commit 6dbde67

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cldctrl",
3-
"version": "0.2.0",
3+
"version": "0.3.2",
44
"description": "Mission control for Claude Code — cross-platform TUI project launcher",
55
"license": "AGPL-3.0-only",
66
"author": "Ryan Phillips",
@@ -44,7 +44,7 @@
4444
"test:watch": "vitest",
4545
"typecheck": "tsc --noEmit",
4646
"prepublishOnly": "npm run build",
47-
"postinstall": "node -e \"console.log('\\n Tip: Run `cldctrl setup` to enable Ctrl+Up hotkey (Windows)\\n')\""
47+
"postinstall": "node -e \"console.log('\\n Tip: Run cldctrl setup to enable global hotkey\\n')\""
4848
},
4949
"dependencies": {
5050
"commander": "^12.1.0",

packages/cli/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Shared constants: version, color palettes, unicode characters, defaults.
33
*/
44

5-
export const VERSION = '0.3.2';
5+
export const VERSION = '0.3.3';
66
export const APP_NAME = 'CLD CTRL';
77
export const APP_CMD = 'cldctrl';
88
export const APP_TAGLINE = 'Mission control for Claude Code';

0 commit comments

Comments
 (0)