From 800799ea63a4e5b48b320fbb55267a4c522b8e9a Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Wed, 22 Aug 2012 23:30:34 +1000 Subject: makepkg: do not create hg working directory on checkout Creating the working directory can waste a lot of space. Fixes FS#31221. Signed-off-by: Allan McRae --- scripts/makepkg.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 51d3971c..21c660c0 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -477,7 +477,7 @@ download_hg() { if [[ ! -d "$dir" ]]; then msg2 "$(gettext "Cloning %s %s repo...")" "${repo}" "hg" - if ! hg clone "$url" "$dir"; then + if ! hg clone -U "$url" "$dir"; then error "$(gettext "Failure while downloading %s %s repo")" "${repo}" "hg" plain "$(gettext "Aborting...")" exit 1 @@ -485,7 +485,7 @@ download_hg() { elif (( ! HOLDVER )); then msg2 "$(gettext "Updating %s %s repo...")" "${repo}" "hg" cd_safe "$dir" - if ! hg pull -u; then + if ! hg pull; then # only warn on failure to allow offline builds warning "$(gettext "Failure while updating %s %s repo")" "${repo}" "hg" fi -- cgit v1.2.3-24-g4f1b