From f14988b36261ba252a2436a28d31b459bd55527d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 17 Jul 2006 21:27:10 +0000 Subject: [PATCH] * Show less garbage. svn path=/nixpkgs/trunk/; revision=5761 --- pkgs/build-support/fetchsvn/nix-prefetch-svn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchsvn/nix-prefetch-svn b/pkgs/build-support/fetchsvn/nix-prefetch-svn index 879b96f070ef..e8b849a1bbbe 100755 --- a/pkgs/build-support/fetchsvn/nix-prefetch-svn +++ b/pkgs/build-support/fetchsvn/nix-prefetch-svn @@ -42,7 +42,8 @@ if test -z "$finalPath"; then mkdir $tmpPath # Perform the checkout. - echo p | svn export -r "$rev" "$url" $tmpFile >&2 + # !!! remove 2>/dev/null when we have fixed the certificate hackery. + echo p | svn export -r "$rev" "$url" $tmpFile 2>/dev/null >&2 # Compute the hash. hash=$(nix-hash --type $hashType $hashFormat $tmpFile)