X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/204fe60b28128d6210f63b58fb2d10ccfd054b79..461317c8fb5ec758fd77d2d7450ca3cd94fc58c2:/docs/contrib/build_nmh?ds=inline diff --git a/docs/contrib/build_nmh b/docs/contrib/build_nmh index 693c4578..fc871f8f 100755 --- a/docs/contrib/build_nmh +++ b/docs/contrib/build_nmh @@ -131,7 +131,7 @@ else [ "$verbose" -eq 0 ] && git_opts=--quiet [ "$branch" == master ] || git_opts="${git_opts:+$git_opts }--branch $branch" - if "$gitdir"/git clone $git_opts "git://$gitrepo/nmh.git"; then + if "$gitdir"/git clone --depth 1 $git_opts "git://$gitrepo/nmh.git"; then cd nmh || die "failed to clone nmh" printf "commit %s\n" `git log --max-count=1 --pretty=format:%H` else @@ -146,10 +146,10 @@ else snapshot="$repo/$tarball" if [ "`finddir wget`" ]; then [ "$verbose" -eq 0 ] && wget_opts='--quiet' - wget --output-document - $wget_opts "$snapshot" | tar xzf - + wget --output-document - $wget_opts "$snapshot" | gzip -d | tar xf - elif [ "`finddir curl`" ]; then [ "$verbose" -eq 0 ] && curl_opts='--silent --show-error' - curl --location $curl_opts "$snapshot" | tar xzf - + curl --location $curl_opts "$snapshot" | gzip -d | tar xf - else die 'unable to find program to download nmh sources' fi