fix: ensure the python app has a requirements.txt file

Without this, detection will fail on the heroku/python buildpack.
This commit is contained in:
Jose Diaz-Gonzalez
2021-05-31 16:02:09 -04:00
parent 244651dcba
commit 634c8b48d1

View File

@@ -314,4 +314,7 @@ EOF
cat <<EOF >"$APP_REPO_DIR/Aptfile"
hello
EOF
echo "injecting requirements.txt -> $APP_REPO_DIR/requirements.txt"
touch "$APP_REPO_DIR/requirements.txt"
}