From dd7367d32f9633fbc7677a306ebecd7fea28924c Mon Sep 17 00:00:00 2001 From: Max Ka Date: Sat, 15 Feb 2020 16:20:48 +0100 Subject: [PATCH] changed function for setup.py in order to use python3 --- bootstrap-salt.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 389276b..ac19293 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -6358,7 +6358,7 @@ install_opensuse_git() { __install_salt_from_repo_post_neon "${_PY_EXE}" || return 1 return 0 fi - + "${_PY_EXE}" setup.py ${SETUP_PY_INSTALL_ARGS} install --prefix=/usr || return 1 return 0 } @@ -6640,8 +6640,7 @@ install_suse_15_stable() { } install_suse_15_git() { - _PY_EXE="python3" - install_opensuse_git || return 1 + install_opensuse_15_git || return 1 return 0 } @@ -6739,7 +6738,7 @@ install_suse_12_git_deps() { install_suse_12_stable() { install_opensuse_stable || return 1 - return 0 + return 0 } install_suse_12_git() {