diff options
author | 2022-07-22 00:58:45 -0700 | |
---|---|---|
committer | 2022-07-22 00:58:45 -0700 | |
commit | 0d4b4c494243cf73bf704971dcc0711c5882a8aa (patch) | |
tree | 997f8cd101803ff023e277a2330ad7bf8472cb59 /src/cli/upgrade_command.zig | |
parent | c772256e93931f032751474e5ddeccbb92cee847 (diff) | |
download | bun-0d4b4c494243cf73bf704971dcc0711c5882a8aa.tar.gz bun-0d4b4c494243cf73bf704971dcc0711c5882a8aa.tar.zst bun-0d4b4c494243cf73bf704971dcc0711c5882a8aa.zip |
Canary builds (Linux) (#824)canary
* wip
* WIP:
* WIP
* WIP
* WIP
* WIP
* WIP
* Update WebKit
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* Update WebKit
* WIP
* WIP
* WIP
* WIP
* Workaround missing system calls
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* Fix baseline detection
* WIP
* strip debug symbol
* Auto-generate canary build
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/cli/upgrade_command.zig')
-rw-r--r-- | src/cli/upgrade_command.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli/upgrade_command.zig b/src/cli/upgrade_command.zig index a64985bbb..a28749849 100644 --- a/src/cli/upgrade_command.zig +++ b/src/cli/upgrade_command.zig @@ -66,7 +66,8 @@ pub const Version = struct { pub const platform_label = if (Environment.isMac) "darwin" else "linux"; pub const arch_label = if (Environment.isAarch64) "aarch64" else "x64"; pub const triplet = platform_label ++ "-" ++ arch_label; - pub const folder_name = "bun-" ++ triplet; + const suffix = if (Environment.baseline) "-baseline" else ""; + pub const folder_name = "bun-" ++ triplet ++ suffix; pub const zip_filename = folder_name ++ ".zip"; const current_version: string = "bun-v" ++ Global.package_json_version; |