1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 17:55:10 +03:00

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
echo "Failed to find tower source tree, map your development tree volume"
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
if [ -f "awx/lib/.deps_built" ]; then