commit 269a5825164e84170127016793a6874aed1465a2 parent 61f51d69adb3e56ea9635b54d0abc440814a6fac Author: Florian Dold <florian@dold.me> Date: Fri, 13 Nov 2020 22:12:54 +0100 fix dist Diffstat:
| M | .gitignore | | | 2 | ++ |
| M | build-system/Makefile | | | 7 | ++++++- |
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore @@ -22,3 +22,5 @@ build-scripts/ # Git worktree of pre-built wallet files prebuilt/ + +taler-wallet-*.tar.gz diff --git a/build-system/Makefile b/build-system/Makefile @@ -7,6 +7,11 @@ typedoc = node_modules/typedoc/bin/typedoc ava = node_modules/.bin/ava nyc = node_modules/nyc/bin/nyc.js +git-archive-all = ./build-system/taler-build-scripts/archive-with-submodules/git_archive_all.py + + +version := $(shell git describe --tags) + include ./build-system/config.mk .PHONY: compile @@ -16,7 +21,7 @@ compile: .PHONY: dist dist: - git archive --format=tar.gz HEAD -o taler-wallet.tar.gz + $(git-archive-all) --include ./configure taler-wallet-$(version).tar.gz # make documentation from docstrings .PHONY: typedoc