summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-03-19 08:57:22 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-03-19 08:57:54 -0400
commitfea5f913e33791094bd37a6c67772d7ecb759232 (patch)
tree2130bb7576436f353c63ac91ba0f0498f344f9b7
parentbd9386ddac4ef6730fbe6ce4104e80f56a48fe43 (diff)
downloadpodman-fea5f913e33791094bd37a6c67772d7ecb759232.tar.gz
podman-fea5f913e33791094bd37a6c67772d7ecb759232.tar.bz2
podman-fea5f913e33791094bd37a6c67772d7ecb759232.zip
Don't include SUBDIR in windows.zip
The zip file should returne podman.exe plus the documentation directory. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6104c444c..f5d6531c2 100644
--- a/Makefile
+++ b/Makefile
@@ -430,7 +430,7 @@ podman-remote-release-%.zip:
cp release.txt "$(TMPDIR)/"
cp ./bin/podman-remote-$*$(BINSFX) "$(TMPDIR)/$(SUBDIR)/podman$(BINSFX)"
cp -r ./docs/build/remote/$* "$(TMPDIR)/$(SUBDIR)/docs/"
- cd "$(TMPDIR)" && \
+ cd "$(TMPDIR)/$(SUBDIR)" && \
zip --recurse-paths "$(CURDIR)/$@" "./release.txt" "./"
-rm -rf "$(TMPDIR)"