2011-10-07 08:06:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Run at the end of each vm's provisioning script
|
|
|
|
|
2011-12-30 08:49:19 +00:00
|
|
|
set -e
|
|
|
|
|
2011-10-07 08:06:01 +00:00
|
|
|
# Link tox.ini into the home directory so you can run tox immediately
|
|
|
|
# after ssh'ing in without cd'ing to /vagrant (since cd'ing to /tornado
|
|
|
|
# gets the wrong config)
|
|
|
|
ln -sf /vagrant/tox.ini ~vagrant/tox.ini
|