forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
249 B
9 lines
249 B
7 years ago
|
#!/bin/bash -e
|
||
|
|
||
|
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" --
|