diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-16 21:56:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2022-06-16 21:56:59 +0000 |
commit | 2fd5360c28307fae2b325e2873661b58cb0f4407 (patch) | |
tree | 54612cd6610a41d0b65abfd846a1a0aae39f6455 | |
parent | Correcting breaking extra-quotes in dnsdist-console. (diff) | |
download | service-tools-2fd5360c28307fae2b325e2873661b58cb0f4407.tar.xz service-tools-2fd5360c28307fae2b325e2873661b58cb0f4407.zip |
Adding git commands to release target in top-level Makefile.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -77,6 +77,9 @@ distclean: reinstall: uninstall install release: distclean + git commit -a -s -S -m 'Releasing version $(VERSION).' || true + git tag -s -m 'Tagging version $(VERSION).' v$(VERSION) || true + mkdir service-tools-$(VERSION) find . -mindepth 1 -maxdepth 1 -and -not -name ".git*" -and -not -name debian -and -not -name service-tools-$(VERSION) -exec cp \-a {} service-tools-$(VERSION) \; |