Skip to content
Snippets Groups Projects
Commit 322d1968 authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

tr -d './'

parent 07a68535
No related branches found
No related tags found
No related merge requests found
......@@ -20,8 +20,8 @@ EOF
[ "$NAME" = "Python/Django" ] || exit 0
SETTINGS_FILE=$(cd $BUILD_DIR && find . -maxdepth 2 -type f -name 'settings.py' | head -1)
MANAGE_FILE=$(cd $BUILD_DIR && find . -maxdepth 2 -type f -name 'manage.py' | head -1)
SETTINGS_FILE=$(cd $BUILD_DIR && find . -maxdepth 2 -type f -name 'settings.py' | head -1 | tr -d './' )
MANAGE_FILE=$(cd $BUILD_DIR && find . -maxdepth 2 -type f -name 'manage.py' | head -1 | tr -d './' )
PROJECT=$(dirname $MANAGE_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