From 47e382ed40cc1626693db5e99e652889eb9dfa8b Mon Sep 17 00:00:00 2001 From: Sander Maijers Date: Tue, 5 Apr 2016 17:05:48 +0200 Subject: [PATCH] fix: calculate SHA256 hash value in binary mode Correctness fix. This change will not make a difference on Unix. See [https://www.virtualbox.org/ticket/9569]. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ef7a1e..355e40d 100644 --- a/Makefile +++ b/Makefile @@ -72,7 +72,7 @@ release: builddeb-docker sdist tar -C dist --strip=3 -xvf - ./usr/bin/dumb-init mv dist/dumb-init dist/dumb-init_$(VERSION)_amd64 cd dist && \ - sha256sum dumb-init_$(VERSION)_amd64.deb dumb-init_$(VERSION)_amd64 \ + sha256sum --binary dumb-init_$(VERSION)_amd64.deb dumb-init_$(VERSION)_amd64 \ > sha256sums .PHONY: sdist