diff options
| author | Stefan Boberg <[email protected]> | 2024-01-31 15:55:45 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-31 15:55:45 +0100 |
| commit | 8cb2b93f31c59b3261951a70c48e5da548194002 (patch) | |
| tree | b4e981b148e2cb1c31ade0fcabb1901caf13ae6b /scripts/bundle.lua | |
| parent | only try to traverse an objectstore bucket if it really exists (#646) (diff) | |
| download | zen-8cb2b93f31c59b3261951a70c48e5da548194002.tar.xz zen-8cb2b93f31c59b3261951a70c48e5da548194002.zip | |
changed RPC recording to MPSC setup (#638)
fixes rare race condition when using RPC recording for long periods of time
Diffstat (limited to 'scripts/bundle.lua')
| -rw-r--r-- | scripts/bundle.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bundle.lua b/scripts/bundle.lua index 7294043ec..4683eabbd 100644 --- a/scripts/bundle.lua +++ b/scripts/bundle.lua @@ -210,8 +210,8 @@ end -------------------------------------------------------------------------------- local function main_mac(signidentity) -- Build and universalify - _build("x86_64", false, "--target_minver=10.15") - _build("arm64", false, "--target_minver=10.15") + _build("x86_64", false, "--target_minver=12.5") + _build("arm64", false, "--target_minver=12.5") os.mkdir("build/macosx/universal/release/") local ret = _exec( |