Skip to content

Commit 35f9101

Browse files
committed
Pull request 2639: ADG-12124-use-globs-properly-in-scripts
Squashed commit of the following: commit 0a63931 Merge: 33fbca6 f7c9078 Author: Maksim Kazantsev <m.kazantsev@adguard.com> Date: Thu Apr 23 15:32:37 2026 +0300 Merge branch 'master' into ADG-12124-use-globs-properly-in-scripts commit 33fbca6 Author: Maksim Kazantsev <m.kazantsev@adguard.com> Date: Thu Apr 23 14:48:54 2026 +0300 make: use globs properly;
1 parent f7c9078 commit 35f9101

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/make/md-lint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
verbose="${VERBOSE:-0}"
99
readonly verbose
1010

11-
set -e -f -u
11+
# Don't use -f, because we use globs in this script.
12+
set -e -u
1213

1314
if [ "$verbose" -gt '0' ]; then
1415
set -x

0 commit comments

Comments
 (0)