We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe9609 commit ad06ec8Copy full SHA for ad06ec8
tools/macos_check_installer_signature.sh
@@ -7,8 +7,10 @@ if [[ "$GITHUB_EVENT_NAME" != "pull_request" ]]; then
7
fi
8
# Now extract the package and check that the _conda binary is
9
# properly signed as well
10
-pkgutil --expand-full ${PKG_INSTALLER_NAME} ./sp-extracted
11
-DIR="./sp-extracted/prepare_installation.pkg/Payload/.scientific-python"
+pkgutil --expand-full ${PKG_INSTALLER_NAME} ./pkg-extracted
+# Get pkg_name from construct.yaml file.
12
+cons_pkg_name=$(basename $PKG_INSTALL_PREFIX)
13
+DIR="./pkg-extracted/prepare_installation.pkg/Payload/${cons_pkg_name}"
14
echo "Checking ${DIR} exists"
15
test -d "$DIR"
16
ls -al "$DIR"
0 commit comments