aboutsummaryrefslogtreecommitdiff
path: root/ghwt.py
diff options
context:
space:
mode:
authorKyle Stone <kyle.stone@is4s.com>2020-01-28 14:03:02 -0500
committerKyle Stone <kyle.stone@is4s.com>2020-01-28 19:00:39 -0500
commitbec46cc141eaa139840a4ad3f15c47549b3ed432 (patch)
treea002d54a16aba8c072f263af067cbbdb744b5c93 /ghwt.py
parentd0c7b5169303fb0a394201d90be1e74426d7b2d9 (diff)
downloadmeson-bec46cc141eaa139840a4ad3f15c47549b3ed432.zip
meson-bec46cc141eaa139840a4ad3f15c47549b3ed432.tar.gz
meson-bec46cc141eaa139840a4ad3f15c47549b3ed432.tar.bz2
Fix expected/obtained hashes
Diffstat (limited to 'ghwt.py')
-rwxr-xr-xghwt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghwt.py b/ghwt.py
index 4e1c9b4..7c2a6d1 100755
--- a/ghwt.py
+++ b/ghwt.py
@@ -53,8 +53,8 @@ def unpack(sproj, branch, outdir):
should = config['wrap-file']['source_hash']
if dig != should:
print('Incorrect hash on download.')
- print(' expected:', dig)
- print(' obtained:', should)
+ print(' expected:', should)
+ print(' obtained:', dig)
return 1
spdir = os.path.dirname(outdir)
ofilename = os.path.join(spdir, config['wrap-file']['source_filename'])