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:
rascencio 2015-06-08 23:29:44 -06:00
parent fe4f6c97d5
commit bb7f0cf73a
1 changed files with 3 additions and 0 deletions

View File

@ -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