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
This commit is contained in:
parent
0c77e1ce45
commit
4f776f9ebe
1 changed files with 1 additions and 3 deletions
|
@ -24,7 +24,7 @@ Build the application bundle for macOS.
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
-d Compile in debug mode
|
-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.
|
-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.
|
-i Install the resulting DMG into /Applications in local mode. Noop without -l.
|
||||||
-h Display this help and exit.
|
-h Display this help and exit.
|
||||||
|
@ -44,10 +44,8 @@ do
|
||||||
l)
|
l)
|
||||||
export CARGO_INCREMENTAL=true
|
export CARGO_INCREMENTAL=true
|
||||||
export CARGO_BUNDLE_SKIP_BUILD=true
|
export CARGO_BUNDLE_SKIP_BUILD=true
|
||||||
build_flag=""
|
|
||||||
local_arch=true
|
local_arch=true
|
||||||
local_only=true
|
local_only=true
|
||||||
target_dir="debug"
|
|
||||||
;;
|
;;
|
||||||
i) local_install=true;;
|
i) local_install=true;;
|
||||||
h)
|
h)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue