Skip to content
Snippets Groups Projects
Commit ab388f54 authored by Tomáš Sapák's avatar Tomáš Sapák
Browse files

Merge branch 'fix-python-in-entrypoint' into 'master'

Fix python version in entrypoint

See merge request muni-kypo-crp/backend-python/kypo-ansible-runner!28
parents c3ea5e21 b1eef44b
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