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 b4feef9Copy full SHA for b4feef9
1 file changed
util/fetch-gnu.sh
@@ -4,7 +4,10 @@ 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
+)
11
+ for f in "${backport[@]}"
12
+ do curl -L ${repo}/raw/refs/heads/master/tests/$f > tests/$f
13
+ done
0 commit comments