diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-02-26T23·32+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-02-26T23·32+0000 |
commit | 363e307fd360c32a932b9bcb1d620d3add259f79 (patch) | |
tree | 752ea9db604699abbb5733cbd85bf6b987e2490a /scripts | |
parent | ddde8e2f32b5c6785e9ac7c6ea6eb84813cca293 (diff) |
* Error message to stdout.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/nix-prefetch-url.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-prefetch-url.in b/scripts/nix-prefetch-url.in index 446c7a669c3d..2b447850162c 100644 --- a/scripts/nix-prefetch-url.in +++ b/scripts/nix-prefetch-url.in @@ -58,7 +58,7 @@ if test -z "$finalPath"; then if test -n "$tmpPath"; then rm -rf $tmpPath || true; fi if test -n "$expHash" -a "$expHash" != "$hash"; then - echo "hash mismatch for URL \`$url'" + echo "hash mismatch for URL \`$url'" >&2 exit 1 fi fi |