mirror of
https://github.com/vim/vim.git
synced 2026-05-03 00:46:29 +02:00
Problem: tests: sh_10 fails on MacOS runners (after 16c2279062)
because dash does not exist on MacOS
Solution: Force the test to use bash shebang line
Signed-off-by: Christian Brabandt <cb@256bit.org>
13 lines
261 B
Bash
13 lines
261 B
Bash
#!/bin/bash
|
|
|
|
curl --http2 --tlsv1.2 -O https://example.com/file.txt
|
|
wget --inet6-only https://example.com/file.txt
|
|
gzip -9 file
|
|
xz -T0 file
|
|
find /tmp -type f -print0 | xargs -0 echo
|
|
cut -f1 file
|
|
nice -n10 make -j4
|
|
kill -9 12345
|
|
tail -n10 error.log
|
|
git log -n10
|