From 664e8c9c37c62491aa7f96142c21db8f88a2dafd Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 16 May 2023 15:27:39 +0200 Subject: [PATCH] fix bash script --- installers/macos-pkg-setup-template.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/macos-pkg-setup-template.sh b/installers/macos-pkg-setup-template.sh index c95d0aaf..d663a1c8 100644 --- a/installers/macos-pkg-setup-template.sh +++ b/installers/macos-pkg-setup-template.sh @@ -2,7 +2,7 @@ set -e PYTHON_FULL_VERSION="{{__VERSION_FULL__}}" PYTHON_PKG_NAME="{{__PKG_NAME__}}" -$ARCHITECTURE="{{__ARCHITECTURE__}}" +ARCHITECTURE="{{__ARCHITECTURE__}}" MAJOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 1) MINOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 2)