Skip to content

Commit 8a10446

Browse files
committed
WIP: satisfy CI
Signed-off-by: Paul-Elliot <[email protected]>
1 parent 08aad1a commit 8a10446

File tree

1 file changed

+4
-2
lines changed
  • test/xref2/big_search_path.t

1 file changed

+4
-2
lines changed

test/xref2/big_search_path.t/run.t

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
We create a lot of directories
22

3-
$ for ((i = 1; i <= 1000; i++)); do
4-
> mkdir -p d$i
3+
$ i=1
4+
> while [ $i -le 1000 ]; do
5+
> mkdir -p d$i
6+
> i=$((i + 1))
57
> done
68

79
$ echo "{0 Heading}" > p.mld

0 commit comments

Comments
 (0)