File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ echo "Running pre-push git hook: $0"
2020./ci/check_job_dependencies.sh > /dev/null & JOB_DEPS_PID=$!
2121./ci/check_readme.sh > /dev/null & README_PID=$!
2222./ci/check_stale_stderr.sh > /dev/null & STALE_STDERR_PID=$!
23- ./ci/check_todo.sh > /dev/null & XODO_PID=$!
2423./ci/check_versions.sh > /dev/null & VERSIONS_PID=$!
2524./ci/check_msrv_is_minimal.sh > /dev/null & MSRV_PID=$!
2625
@@ -36,7 +35,6 @@ wait $TOOLCHAINS_PID
3635wait $JOB_DEPS_PID
3736wait $README_PID
3837wait $STALE_STDERR_PID
39- wait $XODO_PID
4038wait $VERSIONS_PID
4139wait $MSRV_PID
4240
@@ -48,8 +46,10 @@ wait $MSRV_PID
4846#
4947# This was added because, in #728, we added `ci/check_all_toolchains_tested.sh`
5048# without calling it from this script.
51- GLOBIGNORE=" ./*/release_crate_version.sh" # We don't want to run this one
49+ shopt -s extglob
50+ GLOBIGNORE=" ./*/@(release_crate_version|check_todo).sh" # We don't want to run these
5251for f in ./ci/* ; do
5352 grep " $f " githooks/pre-push > /dev/null || { echo " $f not called from githooks/pre-push" >&2 ; exit 1; }
5453done
5554unset GLOBIGNORE
55+ shopt -u extglob
You can’t perform that action at this time.
0 commit comments