diff options
| author | Stefan Boberg <[email protected]> | 2023-05-01 18:58:48 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-05-01 18:58:48 +0200 |
| commit | f144c4f801161f1275d7007fef9f326cf513d3c5 (patch) | |
| tree | f525e0b23bd4b66077944168f32685b0c550a3af /scripts | |
| parent | add customization of assert implementation (#263) (diff) | |
| download | zen-f144c4f801161f1275d7007fef9f326cf513d3c5.tar.xz zen-f144c4f801161f1275d7007fef9f326cf513d3c5.zip | |
fix: bundle shouldn't append content zip to zen
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bundle.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/bundle.lua b/scripts/bundle.lua index b2857e42f..6b9a0a81f 100644 --- a/scripts/bundle.lua +++ b/scripts/bundle.lua @@ -183,7 +183,6 @@ local function main_windows() _build("x64", false, config_args) _append_content_zip("build/windows/x64/release/zenserver.exe") - _append_content_zip("build/windows/x64/release/zens.exe") local crashpad_handler_path = _find_vcpkg_binary( "x64-windows-static", @@ -230,8 +229,6 @@ local function main_mac() raise("Failed creating universal zen binary") end - _append_content_zip("build/macosx/universal/release/zen") - -- At the time of writing vcpkg does not support sentry-native on arm64. Once -- it does we can create a univeral binary for this. For now just bundle x64 local crashpad_handler_path = _find_vcpkg_binary( @@ -261,7 +258,6 @@ local function main_linux() --]] _append_content_zip("build/linux/x86_64/release/zenserver") - _append_content_zip("build/linux/x86_64/release/zen") _zip(false, "build/zenserver-linux.zip", |