mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 11:35:35 +00:00
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
|
# Generate a directory tree suitable for forming a tarball of
|
||
|
# this package.
|
||
|
exec >&2
|
||
|
dir=${1%/*}
|
||
|
outdir=$PWD/${1%.dir}
|
||
|
rm -rf "$outdir"
|
||
|
mkdir "$outdir"
|
||
|
touch $outdir/.stamp
|
||
|
sfiles="
|
||
|
tailscale-login
|
||
|
debian/*.service
|
||
|
*.defaults
|
||
|
"
|
||
|
ofiles="
|
||
|
relaynode
|
||
|
../taillogin/taillogin
|
||
|
"
|
||
|
redo-ifchange "$outdir/.stamp"
|
||
|
(cd "$S/$dir" && redo-ifchange $sfiles && cp $sfiles "$outdir/")
|
||
|
(cd "$dir" && redo-ifchange $ofiles && cp $ofiles "$outdir/")
|