Skip to content

Commit a075d66

Browse files
katspaughclaude
andcommitted
fix: use printf instead of echo in StackBlitz start command
Replace echo with printf and proper escape sequences to avoid shell parsing issues in StackBlitz's WebContainer environment. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 3b0cdf5 commit a075d66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.stackblitzrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"installDependencies": true,
3-
"startCommand": "npm run build && npm link && echo '\nSafe CLI is ready! Try running: safe --help\n'",
3+
"startCommand": "npm run build && npm link && printf '\\n✓ Safe CLI is ready! Try running: safe --help\\n\\n'",
44
"env": {
55
"NODE_ENV": "development"
66
},

0 commit comments

Comments
 (0)