-
Notifications
You must be signed in to change notification settings - Fork 25
docs: Update LocalStack CLI version in installation guide #365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -72,7 +72,8 @@ You may download the binary for your architecture using the link below: | |||||||||||||||||||
|
|
||||||||||||||||||||
| or use the following curl command: | ||||||||||||||||||||
|
|
||||||||||||||||||||
| <Code code={`curl --output localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz \n --location https://github.com/localstack/localstack-cli/releases/download/v${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> | ||||||||||||||||||||
| <Code code={`curl --output ${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz \ | ||||||||||||||||||||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @joe4dev I've updated the hardcoded version numbers to instead say Let me know if it looks good now 😸 |
||||||||||||||||||||
| --location https://github.com/localstack/localstack-cli/releases/download/${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> | ||||||||||||||||||||
|
Comment on lines
+75
to
+76
|
||||||||||||||||||||
| <Code code={`curl --output ${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz \ | |
| --location https://github.com/localstack/localstack-cli/releases/download/${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> | |
| <Code code={`curl --output localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz \ | |
| --location https://github.com/localstack/localstack-cli/releases/download/v${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The URL is missing the 'v' prefix before the version variable. It should be 'releases/download/v${LOCALSTACK_VERSION}/' to match the correct URL format used in the download link (line 71) and the Linux section (lines 36, 40).
| --location https://github.com/localstack/localstack-cli/releases/download/${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> | |
| --location https://github.com/localstack/localstack-cli/releases/download/v${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> |
Copilot
AI
Jan 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The backslash format should be '\\\n' instead of '\' followed by a newline to maintain consistency with the Linux section format (lines 36, 40). This ensures proper rendering in the documentation component.
| <Code code={`curl --output ${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz \ | |
| --location https://github.com/localstack/localstack-cli/releases/download/${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> | |
| <Code code={`curl --output ${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz \\\n --location https://github.com/localstack/localstack-cli/releases/download/${LOCALSTACK_VERSION}/localstack-cli-${LOCALSTACK_VERSION}-darwin-amd64-onefile.tar.gz`} lang="bash" /> |
Uh oh!
There was an error while loading. Please reload this page.