We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f0318 commit 23ba310Copy full SHA for 23ba310
util/fetch-gnu.sh
@@ -3,8 +3,10 @@ ver="9.10"
3
repo=https://github.com/coreutils/coreutils
4
curl -L "${repo}/releases/download/v${ver}/coreutils-${ver}.tar.xz" | tar --strip-components=1 -xJf -
5
6
-# TODO stop backporting tests from master at GNU coreutils > $ver
7
-# backport = ()
8
-# for f in ${backport[@]}
9
-# do curl -L ${repo}/raw/refs/heads/master/tests/$f > tests/$f
10
-# done
+ backport=(
+ misc/coreutils.sh # enable test
+ misc/yes.sh # zero-copy
+)
+ for f in "${backport[@]}"
11
+ do curl -L ${repo}/raw/refs/heads/master/tests/$f > tests/$f
12
+ done
0 commit comments