Makefile, added install_debian_packages task.
install_debian_packages: Simply excutes apt-get update and installs the packages listed in ./requirements.debian.txt Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
parent
bb68c32ba5
commit
a1bc6ea99a
1 changed files with 3 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -18,3 +18,6 @@ collectstatic:
|
|||
|
||||
rsync_upload:
|
||||
rsync -avz -e "ssh -p $(SSH_PORT)" --exclude .git --exclude .ropeproject --exclude __pycache__ --exclude *.pyc --exclude *~ --exclude *.psd $(BASEDIR) $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR)
|
||||
|
||||
install_debian_packages:
|
||||
apt-get update && cat $(BASEDIR)/requirements.debian.txt | xargs apt-get install -y --no-install-recommends
|
||||
|
|
Loading…
Reference in a new issue