11 lines
218 B
Bash
11 lines
218 B
Bash
source $stdenv/setup
|
|
|
|
header "getting $url${tag:+ ($tag)} into $out"
|
|
|
|
hg clone --insecure ${tag:+-r "$tag"} "$url" hg-clone
|
|
|
|
hg archive -q -y ${tag:+-r "$tag"} --cwd hg-clone $out
|
|
rm -f $out/.hg_archival.txt
|
|
|
|
stopNest
|