3
0
Fork 0
forked from mirrors/nixpkgs

chromium/update.sh: Fix spacing in cache messages.

This commit doesn't add any feature and just fixes a small annoyance which
result in messages like this:

Checking if xxx applies...no.

See that there is no whitespace between "..." and "no"? Well, the world cares
for more important things, but for me personally those minor annoyances can turn
into major annoyances.
This commit is contained in:
aszlig 2012-08-26 02:52:33 +02:00
parent ca3f140e9b
commit 224098757f
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -83,9 +83,9 @@ get_channel_exprs()
echo -n "Checking if sha256 of version $version is cached..." >&2;
if sha256="$(sha_lookup "$version")";
then
echo "yes: $sha256" >&2;
echo " yes: $sha256" >&2;
else
echo "no." >&2;
echo " no." >&2;
sha256="$(get_sha256 "$channel" "$version" "$url")";
fi;