Skip to content

Commit

Permalink
Use straight quotes instead of curly in the git command
Browse files Browse the repository at this point in the history
Due to bash expects straight quotes (" or ') for string delimiters

Signed-off-by: Furkat Gofurov <furkat.gofurov@suse.com>
  • Loading branch information
furkatgofurov7 committed Aug 27, 2024
1 parent 23f4d4b commit 39f28a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ git clone git@github.com:rancher/turtles.git
```bash
# Create tags locally
git tag -s -a ${RELEASE_TAG} -m ${RELEASE_TAG}
git tag -s -a test/${RELEASE_TAG} -m Testing framework ${RELEASE_TAG}
git tag -s -a test/${RELEASE_TAG} -m "Testing framework ${RELEASE_TAG}"
# Push tags
git push upstream ${RELEASE_TAG}
Expand Down

0 comments on commit 39f28a6

Please sign in to comment.