diff --git a/script/bundle-mac b/script/bundle-mac index 1c4808955..faba4ca90 100755 --- a/script/bundle-mac +++ b/script/bundle-mac @@ -11,6 +11,7 @@ local_only=false local_install=false bundle_name="" can_code_sign=false +LIBGIT2_NO_VENDOR=1 # This must match the team in the provisioning profile. IDENTITY="Zed Industries, Inc." @@ -303,7 +304,7 @@ function sign_app_binaries() { dmg_target_directory="target/${architecture_dir}/${target_dir}" dmg_source_directory="${dmg_target_directory}/dmg" dmg_file_path="${dmg_target_directory}/Zed.dmg" - xcode_bin_dir_path="$(xcode-select -p)/usr/bin" + xcode_bin_dir_path="/Applications/Xcode-beta.app/Contents/Developer/usr/bin" rm -rf ${dmg_source_directory} mkdir -p ${dmg_source_directory} diff --git a/script/metal-debug b/script/metal-debug index de8476f3e..2907fb7c1 100755 --- a/script/metal-debug +++ b/script/metal-debug @@ -8,6 +8,6 @@ export DYMTL_TOOLS_DYLIB_PATH="/usr/lib/libMTLCapture.dylib" export METAL_DEVICE_WRAPPER_TYPE=1 export GPUProfilerEnabled="YES" export METAL_DEBUG_ERROR_MODE=0 -export LD_LIBRARY_PATH="/Applications/Xcode.app/Contents/Developer/../SharedFrameworks/" +export LD_LIBRARY_PATH="/Applications/Xcode-beta.app/Contents/Developer/../SharedFrameworks/" cargo run "$@"