refactor(tools): fix shell check issues
This commit is contained in:
parent
d0cf2a8dd5
commit
4490ce4107
2 changed files with 5 additions and 4 deletions
|
@ -21,7 +21,7 @@ help() {
|
|||
check_status() {
|
||||
if [[ -n $(git status . -s) ]]; then
|
||||
echo "Error: Commit unstaged files first, and then run this tool again."
|
||||
exit -1
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,8 @@ check_init() {
|
|||
else
|
||||
if [[ -f .github/workflows/$ACTIONS_WORKFLOW ]]; then
|
||||
# on BSD, the `wc` could contains blank
|
||||
local _count="$(find .github/workflows/ -type f -name "*.yml" | wc -l)"
|
||||
local _count
|
||||
_count=$(find .github/workflows/ -type f -name "*.yml" | wc -l)
|
||||
if [[ ${_count//[[:blank:]]/} == 1 ]]; then
|
||||
_has_inited=true
|
||||
fi
|
||||
|
@ -47,7 +48,7 @@ check_init() {
|
|||
}
|
||||
|
||||
checkout_latest_tag() {
|
||||
tag=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||
tag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
|
||||
git reset --hard "$tag"
|
||||
}
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ check() {
|
|||
|
||||
_bump_file() {
|
||||
for i in "${!FILES[@]}"; do
|
||||
if [[ ${FILES[$i]} == $NODE_CONFIG ]]; then
|
||||
if [[ ${FILES[$i]} == "$NODE_CONFIG" ]]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue