mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-16 23:27:17 +02:00
* `==' is not a valid operator.
This commit is contained in:
parent
d551062ec4
commit
9ad39df282
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ echo "downloading $url into $out..."
|
||||||
@wget@ "$url" -O "$out" || exit 1
|
@wget@ "$url" -O "$out" || exit 1
|
||||||
|
|
||||||
actual=$(@bindir@/nix-hash --flat $out)
|
actual=$(@bindir@/nix-hash --flat $out)
|
||||||
if ! test "$actual" == "$md5"; then
|
if test "$actual" != "$md5"; then
|
||||||
echo "hash is $actual, expected $md5"
|
echo "hash is $actual, expected $md5"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue