From b70d11fb6fd1135932a173c2a7a854a8874d9af5 Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Tue, 2 Jan 2018 11:00:16 +0200 Subject: [PATCH] Add missing -j flag to the archive script [ci skip] --- scripts/archive.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/archive.sh b/scripts/archive.sh index 49137984..48d913d4 100755 --- a/scripts/archive.sh +++ b/scripts/archive.sh @@ -5,4 +5,4 @@ PREFIX=$(basename "$(pwd -P)") git ls-files git submodule foreach --recursive --quiet \ 'git ls-files --with-tree="$sha1" | sed "s#^#$path/#"' -} | sed "s#^#$PREFIX/#" | xargs tar -c -C.. -f "$PREFIX.tar.bz2" -- +} | sed "s#^#$PREFIX/#" | xargs tar -c -j -C.. -f "$PREFIX.tar.bz2" --