diff options
-rw-r--r-- | deb/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deb/Makefile b/deb/Makefile index 7d067ef70..7f514fe24 100644 --- a/deb/Makefile +++ b/deb/Makefile @@ -1,8 +1,11 @@ COMMIT?=HEAD -.PHONY: package +.PHONY: package clean package: vagrant up vagrant ssh -c 'rm -rf pandoc && git clone https://github.com/jgm/pandoc && cd pandoc && git checkout -b work $(COMMIT) && git submodule update --init && ./make_deb.sh && cp *.deb /vagrant_data/' vagrant halt + +clean: + vagrant destroy |