From 9da7fd22f7d6218336107d80787dfbe4e93e1a82 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 21 Sep 2022 17:18:39 +0200 Subject: [PATCH] Set `MACOSX_DEPLOYMENT_TARGET` when running `script/bundle` This ensures that every library and binary we build doesn't assume that it's going to run on the same machine that created it. Co-Authored-By: Nathan Sobo --- script/bundle | 1 + 1 file changed, 1 insertion(+) diff --git a/script/bundle b/script/bundle index 42ed7d9244..f3fc4e7434 100755 --- a/script/bundle +++ b/script/bundle @@ -3,6 +3,7 @@ set -e export ZED_BUNDLE=true +export MACOSX_DEPLOYMENT_TARGET=10.14 echo "Installing cargo bundle" cargo install cargo-bundle --version 0.5.0