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
Branches master
Tags v1.4.1
No related merge requests found
...@@ -67,10 +67,10 @@ echo {} > "$ANSWERS_FILE" ...@@ -67,10 +67,10 @@ echo {} > "$ANSWERS_FILE"
VARIABLES_FILE='variables.yml' VARIABLES_FILE='variables.yml'
if [ -f $VARIABLES_FILE ]; then 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 fi
if $USER_CLEANUP; then 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 fi
git submodule update --init --recursive || exit 1 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