Skip to content

Commit 432514b

Browse files
committed
WIP
1 parent c46baab commit 432514b

2 files changed

Lines changed: 1 addition & 14 deletions

File tree

crates/cli/build.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ fn write_plist() {
7878
fn main() {
7979
println!("cargo:rerun-if-changed=def.json");
8080

81+
#[cfg(target_os = "macos")]
8182
write_plist();
8283

8384
let outdir = std::env::var("OUT_DIR").unwrap();

scripts/qchatbuild.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -373,20 +373,6 @@ def build_linux(chat_path: pathlib.Path):
373373
if signer:
374374
signer.sign_file(tar_gz_path)
375375

376-
info(f"Building {archive_name}.tar.xz")
377-
tar_xz_path = BUILD_DIR / f"{archive_name}.tar.xz"
378-
run_cmd(["tar", "-cJf", tar_xz_path, archive_path])
379-
generate_sha(tar_xz_path)
380-
if signer:
381-
signer.sign_file(tar_xz_path)
382-
383-
info(f"Building {archive_name}.tar.zst")
384-
tar_zst_path = BUILD_DIR / f"{archive_name}.tar.zst"
385-
run_cmd(["tar", "-I", "zstd", "-cf", tar_zst_path, archive_path], {"ZSTD_CLEVEL": "19"})
386-
generate_sha(tar_zst_path)
387-
if signer:
388-
signer.sign_file(tar_zst_path)
389-
390376
info(f"Building {archive_name}.zip")
391377
zip_path = BUILD_DIR / f"{archive_name}.zip"
392378
run_cmd(["zip", "-r", zip_path, archive_path])

0 commit comments

Comments
 (0)