From 4f776f9ebeb20d716e1b2e04276fc32c4c5ae073 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 15 Apr 2024 13:29:45 -0700 Subject: [PATCH] Don't make -l imply -d in bundle-mac script (#10438) If you want a debug build, you can easily pass `-ld`. Release Notes: - N/A --- script/bundle-mac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/script/bundle-mac b/script/bundle-mac index 85b9c4c8c3..a1c3cfde0c 100755 --- a/script/bundle-mac +++ b/script/bundle-mac @@ -24,7 +24,7 @@ Build the application bundle for macOS. Options: -d Compile in debug mode - -l Compile for local architecture and copy bundle to /Applications, implies -d. + -l Compile for local architecture and copy bundle to /Applications. -o Open dir with the resulting DMG or launch the app itself in local mode. -i Install the resulting DMG into /Applications in local mode. Noop without -l. -h Display this help and exit. @@ -44,10 +44,8 @@ do l) export CARGO_INCREMENTAL=true export CARGO_BUNDLE_SKIP_BUILD=true - build_flag="" local_arch=true local_only=true - target_dir="debug" ;; i) local_install=true;; h)