diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-03-19 08:57:22 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-03-19 08:57:54 -0400 |
commit | fea5f913e33791094bd37a6c67772d7ecb759232 (patch) | |
tree | 2130bb7576436f353c63ac91ba0f0498f344f9b7 /Makefile | |
parent | bd9386ddac4ef6730fbe6ce4104e80f56a48fe43 (diff) | |
download | podman-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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)" |