diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-02 11:00:16 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-01-02 11:00:16 +0200 |
commit | b70d11fb6fd1135932a173c2a7a854a8874d9af5 (patch) | |
tree | 686e8837b0f8811f1d0de5edd2d557998e64b46b /scripts | |
parent | Add script to create archive (diff) | |
download | nheko-b70d11fb6fd1135932a173c2a7a854a8874d9af5.tar.xz |
Add missing -j flag to the archive script
[ci skip]
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/archive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" -- |