Skip to content

Commit 5f38e2f

Browse files
committed
fix: remove /install suffix from snapshot install command
1 parent 8c268c0 commit 5f38e2f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/cli/snapshot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ func uploadSnapshot(snap *snapshot.Snapshot) error {
272272

273273
// --- SUCCESS SCREEN ---
274274
configURL := fmt.Sprintf("%s/%s/%s", apiBase, stored.Username, result.Slug)
275-
installURL := fmt.Sprintf("curl -fsSL %s/%s/%s/install | bash", apiBase, stored.Username, result.Slug)
275+
installURL := fmt.Sprintf("curl -fsSL %s/%s/%s | bash", apiBase, stored.Username, result.Slug)
276276

277277
fmt.Fprintln(os.Stderr)
278278
fmt.Fprintln(os.Stderr, snapSuccessStyle.Render("✓ Config uploaded successfully!"))

0 commit comments

Comments
 (0)