14 lines
162 B
Plaintext
14 lines
162 B
Plaintext
|
set -x
|
||
|
set -e
|
||
|
|
||
|
echo $curl
|
||
|
|
||
|
$curl/bin/curl "$url" > .tmp
|
||
|
|
||
|
$gunzip -d < .tmp | $tar xvf -
|
||
|
|
||
|
$cp -prvd * $out
|
||
|
|
||
|
if test -n "$postprocess"; then
|
||
|
source $postprocess
|
||
|
fi
|