We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbe5e5 commit 075c8eeCopy full SHA for 075c8ee
scripts/install_plugin.sh
@@ -138,7 +138,7 @@ exit_trap() {
138
rmTempDir
139
if [ "$result" != "0" ]; then
140
echo "Failed to install $PROJECT_NAME"
141
- printf "\tFor support, go to https://github.com/${PROJECT_GH}.\n"
+ printf "\tFor support, go to https://github.com/%s.\n" "$PROJECT_GH"
142
fi
143
exit $result
144
}
scripts/release.sh
@@ -7,6 +7,6 @@ if [ "$1" = "" ]; then
7
exit 1
8
9
10
-git tag $1
11
-git push origin $1
12
-gh release create $1 --draft --generate-notes --title "$1" release/*.tgz
+git tag "$1"
+git push origin "$1"
+gh release create "$1" --draft --generate-notes --title "$1" release/*.tgz
0 commit comments