Skip to content

Commit

Permalink
Bulk to master: bioconda-utils 3.3.1 and OSX SDK vars (#56)
Browse files Browse the repository at this point in the history
Bulk and master should be the same now, so I'm merging bulk directly in
rather than copying the file changes.

---------

Signed-off-by: Marcel Bargull <[email protected]>
Co-authored-by: Johannes Köster <[email protected]>
Co-authored-by: Johannes Köster <[email protected]>
Co-authored-by: Devon Ryan <[email protected]>
Co-authored-by: Ryan Dale <[email protected]>
Co-authored-by: Marcel Bargull <[email protected]>
Co-authored-by: Marcel Bargull <[email protected]>
  • Loading branch information
7 people authored Jun 14, 2024
1 parent f761183 commit 1da537f
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion common.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
BIOCONDA_UTILS_TAG=v3.2.0
BIOCONDA_UTILS_TAG=v3.3.1
MAMBAFORGE_VER=24.3.0-0
MAMBAFORGE_INSTALLATION_DIR="/opt/mambaforge"
platform=$(uname -s)
arch=$(uname -m)
if [[ "$platform" == "Darwin" ]]; then
if [[ "$arch" == "arm64" ]]; then
export MACOSX_DEPLOYMENT_TARGET=11
export MACOSX_SDK_VERSION=11
elif [[ "$arch" == 'x86_64' ]]; then
export MACOSX_DEPLOYMENT_TARGET=10.13
export MACOSX_SDK_VERSION=10.13
fi
fi

0 comments on commit 1da537f

Please sign in to comment.