We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d5f61 commit 79925ffCopy full SHA for 79925ff
internal/tools/scripts/tag.sh
@@ -20,7 +20,7 @@ set -e
20
git tag -a ${GBOC_TAG} -m "Update to OpenTelemetry Collector version ${GBOC_TAG}"
21
printf "Created git tag ${GBOC_TAG}. Would you like to push? (y/n) "
22
read yn
23
-if [ $yn != ${yn#[Yy]} ]; then
+if [ "$yn" != "${yn#[Yy]}" ]; then
24
git push origin ${GBOC_TAG}
25
else
26
git tag -d ${GBOC_TAG}
0 commit comments