Skip to content

Commit bef250a

Browse files
fix(bundle): restore local install on macOS
This was (inadvertently, I think) broken by zed-industries#41392 Ref: 4cc6d6a Ref: zed-industries#41392
1 parent 7a7e820 commit bef250a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

script/bundle-mac

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ source script/lib/blob-store.sh
66
build_flag="--release"
77
target_dir="release"
88
open_result=false
9-
local_arch=false
109
local_only=false
1110
local_install=false
1211
can_code_sign=false
@@ -39,6 +38,11 @@ do
3938
build_flag="";
4039
target_dir="debug"
4140
;;
41+
l)
42+
export CARGO_INCREMENTAL=true
43+
export CARGO_BUNDLE_SKIP_BUILD=true
44+
local_only=true
45+
;;
4246
i) local_install=true;;
4347
h)
4448
help_info

0 commit comments

Comments
 (0)