Skip to content

Commit 161bb5d

Browse files
jlia0claude
andauthored
fix: remove stale setup-wizard.sh references (#197) (#198)
The shell-based setup-wizard.sh was migrated to TypeScript (packages/cli/src/setup-wizard.ts) but two references were left behind: - scripts/remote-install.sh: chmod on non-existent lib/setup-wizard.sh caused first-time installs to fail - lib/daemon.sh: called the removed shell script instead of the Node.js replacement when no configuration is found Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8e4b3ec commit 161bb5d

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

lib/daemon.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ start_daemon() {
6767
elif [ $load_rc -ne 0 ]; then
6868
echo -e "${YELLOW}No configuration found. Running setup wizard...${NC}"
6969
echo ""
70-
"$SCRIPT_DIR/lib/setup-wizard.sh"
70+
node "$SCRIPT_DIR/packages/cli/dist/setup-wizard.js"
7171

7272
if ! load_settings; then
7373
echo -e "${RED}Setup failed or was cancelled${NC}"

scripts/remote-install.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ chmod +x bin/tinyclaw
180180
chmod +x tinyclaw.sh
181181
chmod +x scripts/install.sh
182182
chmod +x scripts/uninstall.sh
183-
chmod +x lib/setup-wizard.sh
184183
chmod +x lib/heartbeat-cron.sh
185184
chmod +x lib/update.sh
186185

0 commit comments

Comments
 (0)