Skip to content

Commit 24eeb8e

Browse files
committed
Fix shellcheck warning SC2220 [skip ci]
1 parent ec8b568 commit 24eeb8e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

devtools/format_md.sh

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ command -v shellcheck >/dev/null && shellcheck "$0"
66
op="write"
77
while getopts c option; do
88
case "${option}" in
9-
109
c) op="check" ;;
1110
*) ;;
1211
esac

devtools/format_sh.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ command -v shellcheck >/dev/null && shellcheck "$0"
66
op="w"
77
while getopts c option; do
88
case "${option}" in
9-
109
c) op="d" ;;
10+
*) ;;
1111
esac
1212
done
1313

devtools/format_yml.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ command -v shellcheck >/dev/null && shellcheck "$0"
66
op="write"
77
while getopts c option; do
88
case "${option}" in
9-
109
c) op="check" ;;
10+
*) ;;
1111
esac
1212
done
1313

0 commit comments

Comments
 (0)