From 35d9e06f34afbb8dea3bc0c8e1ae1cbee46c1401 Mon Sep 17 00:00:00 2001 From: Furkat Gofurov Date: Tue, 27 Aug 2024 18:03:30 +0300 Subject: [PATCH] Use straight quotes instead of curly in the git command (#694) Due to bash expects straight quotes (" or ') for string delimiters Signed-off-by: Furkat Gofurov --- docs/release.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release.md b/docs/release.md index 9812b8e1..62569f57 100644 --- a/docs/release.md +++ b/docs/release.md @@ -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}