aboutsummaryrefslogtreecommitdiff
path: root/nailgun_launcher
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-06 21:45:24 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-06 21:45:24 -0500
commit5f1fb226244e57efac90a48cc24c9648ef0c55a4 (patch)
treee7126bdf1be1ca75596c82ca8b2aac68b0e7e55d /nailgun_launcher
parent3882bd543a860ca64a9639ecd46868d8f4ad858e (diff)
downloadcbt-5f1fb226244e57efac90a48cc24c9648ef0c55a4.tar.gz
cbt-5f1fb226244e57efac90a48cc24c9648ef0c55a4.tar.bz2
cbt-5f1fb226244e57efac90a48cc24c9648ef0c55a4.zip
fix path of file in error message
Diffstat (limited to 'nailgun_launcher')
-rw-r--r--nailgun_launcher/Stage0Lib.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/nailgun_launcher/Stage0Lib.java b/nailgun_launcher/Stage0Lib.java
index 6057c21..8ab6150 100644
--- a/nailgun_launcher/Stage0Lib.java
+++ b/nailgun_launcher/Stage0Lib.java
@@ -204,7 +204,7 @@ public class Stage0Lib{
if(sha1 == null || sha1.toLowerCase().equals(checksum)) {
Files.move(unverified, target, StandardCopyOption.REPLACE_EXISTING, StandardCopyOption.ATOMIC_MOVE);
} else {
- System.err.println(target + " checksum does not match.\nExpected: |" + sha1 + "|\nFound: |" + checksum + "|");
+ System.err.println(unverified + " checksum does not match.\nExpected: |" + sha1 + "|\nFound: |" + checksum + "|");
System.exit(1);
}
}