Skip to content

Commit 075c8ee

Browse files
committed
Resolve shellcheck recommendations
1 parent 7cbe5e5 commit 075c8ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/install_plugin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ exit_trap() {
138138
rmTempDir
139139
if [ "$result" != "0" ]; then
140140
echo "Failed to install $PROJECT_NAME"
141-
printf "\tFor support, go to https://github.com/${PROJECT_GH}.\n"
141+
printf "\tFor support, go to https://github.com/%s.\n" "$PROJECT_GH"
142142
fi
143143
exit $result
144144
}

scripts/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ if [ "$1" = "" ]; then
77
exit 1
88
fi
99

10-
git tag $1
11-
git push origin $1
12-
gh release create $1 --draft --generate-notes --title "$1" release/*.tgz
10+
git tag "$1"
11+
git push origin "$1"
12+
gh release create "$1" --draft --generate-notes --title "$1" release/*.tgz

0 commit comments

Comments
 (0)