10 lines
277 B
Bash
Executable File
10 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
# Run at the end of each vm's provisioning script
|
|
|
|
set -e
|
|
|
|
# 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
|