Skip to content
Snippets Groups Projects
Commit 3b0a8bdd authored by Lincoln Stoll's avatar Lincoln Stoll
Browse files

Settings file path needs to be relative to project root

parent 743effb5
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ EOF
[ "$NAME" = "Python/Django" ] || exit 0
SETTINGS_FILE=$(ls $BUILD_DIR/**/settings.py | head -1)
SETTINGS_FILE=$(cd $BUILD_DIR && ls **/settings.py | head -1)
PROJECT=$(dirname $SETTINGS_FILE)
cat <<EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment