Commit ed5b4c8
authored
Fix formatting of bun build command in deploy.md (#676)
Fix: Add missing line continuation in bun build command
The original multi-line bun build script was missing a line continuation (\) after the --target bun flag. Due to this, the next line (--outfile server) was not treated as being part of the same command, and Bun interpreted it incorrectly.
This patch fixes the issue by adding the missing backslash so that all flags and arguments are correctly sent to bun build.
Why it's important:
Prevents build-time errors due to incorrectly formatted CLI input
Makes the command easier to read and maintain
Matches conventional shell scripting standards
Verified that the build now works with all flags enabled:
Compiled output
Minified whitespace and syntax
Targeting Bun runtime
Custom output file1 parent 383ab46 commit ed5b4c8
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
| 66 | + | |
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
| |||
0 commit comments