From 0e4e65cd39634d17a4f983c264538ea47b03bfc2 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Tue, 18 Mar 2025 21:08:04 +0000 Subject: [PATCH] Revert "chore(just): add .exe extension to windows binaries (#3769)" This reverts commit 61588895f7264adc96327a58e1a480626bf836d1. --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 2896f3926..411f857a4 100644 --- a/justfile +++ b/justfile @@ -50,8 +50,8 @@ _target := if os + '-' + arch == "linux-amd64" { _cargo := 'just-cargo profile=' + profile + ' target=' + _target + ' toolchain=' + toolchain _target_dir := "target" / _target / profile -_target_bin := _target_dir / "linkerd2-proxy" + if os == 'windows' { '.exe' } else { '' } -_package_name := "linkerd2-proxy-" + package_version + "-" + os + "-" + arch + if libc == 'musl' { '-static' } else { '' } +_target_bin := _target_dir / "linkerd2-proxy" +_package_name := "linkerd2-proxy-" + package_version + "-" + arch + (if libc == 'musl' { '-static' } else { '' }) + (if os == 'windows' { '.exe' } else { '' }) _package_dir := "target/package" / _package_name shasum := "shasum -a 256"