I'm using a Github post-recieve hook to run a bash file that pulls both my repos.
#!/bin/sh
cd ~/public_html/repo_static
env -i /usr/bin/git pull origin master
cd ~/django-code/repo_django
env -i /usr/bin/git pull origin master
I also want to collectstatic
on the django repo. How do I automate the "yes" response to that?
I can't use Fabric because unfortunately the team chose to work with Python 2.4 for the time being. Is there a way to automate collectstatic without Fabric?
python manage.py collectstatic --noinput
If you'd like to specify the default answer, you could also just pipe it into the command:
$ echo yes | python manage.py collectstatic
or
$ echo no | python manage.py collectstatic
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With