summaryrefslogtreecommitdiffhomepage
path: root/pkg
diff options
context:
space:
mode:
authorKonstantin Pavlov <thresh@nginx.com>2020-03-19 13:16:37 +0300
committerKonstantin Pavlov <thresh@nginx.com>2020-03-19 13:16:37 +0300
commitbac93637edc22e1953ad3bf9361a8a0526b3cdae (patch)
tree2862bf42c9b6fb0d5d038c3993c57c1048262e31 /pkg
parent3fd4b4cfab9541437d07048f3973368e568fe98f (diff)
downloadunit-bac93637edc22e1953ad3bf9361a8a0526b3cdae.tar.gz
unit-bac93637edc22e1953ad3bf9361a8a0526b3cdae.tar.bz2
Fixed filepath in the image checksum file.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/docker/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/docker/Makefile b/pkg/docker/Makefile
index 4b7b3807..7647e51b 100644
--- a/pkg/docker/Makefile
+++ b/pkg/docker/Makefile
@@ -68,7 +68,7 @@ $(EXPORT_DIR)/nginx-unit-$(VERSION)-%.tar.gz: $(EXPORT_DIR) tag-%
docker save nginx/unit:$(VERSION)-$* | gzip > $@
$(EXPORT_DIR)/nginx-unit-$(VERSION)-%.tar.gz.sha512: $(EXPORT_DIR)/nginx-unit-$(VERSION)-%.tar.gz
- $(SHA512SUM) $< > $@
+ $(SHA512SUM) $< | sed 's,$(EXPORT_DIR)/,,' > $@
all: $(addprefix Dockerfile., $(MODULES))