Put down a file to track make develop in compose

This commit is contained in:
Matthew Jones
2015-09-10 11:03:45 -04:00
parent 97f85d2344
commit a2b6ffb237

View File

@@ -18,7 +18,13 @@ elif [ -f "/tower_devel/ansible-tower/manage.py" ]; then
else else
echo "Failed to find tower source tree, map your development tree volume" echo "Failed to find tower source tree, map your development tree volume"
fi fi
make develop
if [ -f "/.develop_run" ]; then
echo "Skipping 'make develop' step since it has already run - remove /.develop_run to force it"
else
make develop
touch /.develop_run
fi
# Check if we need to build dependencies # Check if we need to build dependencies
if [ -f "awx/lib/.deps_built" ]; then if [ -f "awx/lib/.deps_built" ]; then