Skip to content

Commit 3fbe7c2

Browse files
committed
GHA: Check src_ext/update-sources.sh using shellcheck
1 parent 98190dc commit 3fbe7c2

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/scripts/main/hygiene.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,12 @@ else
141141
(set +x; echo -e ".github/scripts/depexts/generate-actions.sh: \e[31mERROR\e[0m") 2>/dev/null
142142
ERROR=1
143143
fi
144+
if shellcheck src_ext/update-sources.sh ; then
145+
(set +x; echo "src_ext/update-sources.sh: OK") 2>/dev/null
146+
else
147+
(set +x; echo -e "src_ext/update-sources.sh: \e[31mERROR\e[0m") 2>/dev/null
148+
ERROR=1
149+
fi
144150
(set +x ; echo -en "::endgroup::check shell scripts using shellcheck\r") 2>/dev/null
145151

146152
exit $ERROR

master_changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ users)
147147
* Fix duplication logic in revdeps script [#6666 @arozovyk]
148148
* Remove patch dependency in depext actions [#6676 @rjbou]
149149
* Bump opam binary used in depexts actions to 2.4.1 [#6676 @rjbou]
150+
* Check `src_ext/update-sources.sh` using shellcheck [#6701 @kit-ty-kate]
150151

151152
## Doc
152153
* Update the installation documentation with the release of opam 2.4.1 [#6620 @kit-ty-kate]

0 commit comments

Comments
 (0)