We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7277f3 commit 633b824Copy full SHA for 633b824
scripts/lib.sh
@@ -48,7 +48,7 @@ query-apple-m1() {
48
}
49
50
get-pyenv-version() {
51
- if [[ -n "$SENTRY_PYTHON_VERSION" ]]; then
+ if [[ -n "${SENTRY_PYTHON_VERSION:-}" ]]; then
52
echo "${SENTRY_PYTHON_VERSION}"
53
return 0
54
fi
@@ -62,7 +62,7 @@ get-pyenv-version() {
62
63
64
query-valid-python-version() {
65
66
python_version=$(python3 -V 2>&1 | awk '{print $2}')
67
if [ "$python_version" != "$SENTRY_PYTHON_VERSION" ]; then
68
cat <<EOF
0 commit comments