Skip to content
Snippets Groups Projects
Commit b1eef44b authored by Zdeněk Vydra's avatar Zdeněk Vydra
Browse files

Fix python version in entrypoint

parent c3ea5e21
No related branches found
No related tags found
No related merge requests found
......@@ -67,10 +67,10 @@ echo {} > "$ANSWERS_FILE"
VARIABLES_FILE='variables.yml'
if [ -f $VARIABLES_FILE ]; then
python3.8 "$PREPARE_ANSWERS_PY" "$INVENTORY_FILE" "$ANSWERS_FILE" "$ANSWERS_STORAGE_API" || exit 1
python3 "$PREPARE_ANSWERS_PY" "$INVENTORY_FILE" "$ANSWERS_FILE" "$ANSWERS_STORAGE_API" || exit 1
fi
if $USER_CLEANUP; then
python3.8 "$PREPARE_ANSWERS_PY" "$INVENTORY_FILE" "$ANSWERS_FILE" "$ANSWERS_STORAGE_API" --cleanup
python3 "$PREPARE_ANSWERS_PY" "$INVENTORY_FILE" "$ANSWERS_FILE" "$ANSWERS_STORAGE_API" --cleanup
fi
git submodule update --init --recursive || exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment