diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-02 14:45:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-05-02 14:45:41 +0200 |
commit | be870a2c0d48c3881a6e4243d5c34adfa1164628 (patch) | |
tree | 343e2e2728663cc0fe21e2f7992124d6713117e6 | |
parent | 3279f9858369ff13e6cd9e07b4c354b286274086 (diff) | |
download | Ishtar-be870a2c0d48c3881a6e4243d5c34adfa1164628.tar.bz2 Ishtar-be870a2c0d48c3881a6e4243d5c34adfa1164628.zip |
Makefile: update to push install archive
-rw-r--r-- | Makefile.example | 7 | ||||
-rw-r--r-- | version.py | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.example b/Makefile.example index 6d8214b3d..fd68cfe99 100644 --- a/Makefile.example +++ b/Makefile.example @@ -8,6 +8,7 @@ project=example_project # list used apps apps="ishtar_common" "archaeological_operations" "archaeological_context_records" "archaeological_files" "archaeological_finds" "archaeological_warehouse" "archaeological_files_pdl" default_data='fr' +version=`head -n 1 version.py | cut -d' ' -f2` help: # Actions available: @@ -51,7 +52,6 @@ coverage: clean archaeological_files_pdl" ./manage.py test $(apps) && coverage report build_gitlab: - # cd $(project); $(PYTHON) ./manage.py makemigrations auth -n ishtar_profile cd $(project); $(PYTHON) ./manage.py migrate test_gitlab: clean @@ -257,3 +257,8 @@ distribute_main: sdist deb: clean debuild -i -us -uc -b + +push_install: clean + tar cvjf install-ishtar-$(version).tar.bz2 install/ + scp install-ishtar-$(version).tar.bz2 root@git:/var/www/ishtar/install/ + rm install-ishtar-$(version).tar.bz2 diff --git a/version.py b/version.py index df76b8cc7..cf55cff12 100644 --- a/version.py +++ b/version.py @@ -1,4 +1,5 @@ -VERSION = (0, 99, 18, 1) +# 1.99.0 +VERSION = (1, 99, 0) def get_version(): |