1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-07-17 14:55:10 +02:00

Fix decompress zip path ()

Since 0.30.2 the decompressed binary path from the signed package has changed

now it doesn't contain the arch suffix

this change handles that
This commit is contained in:
Maycon Santos
2024-10-17 20:39:59 +02:00
committed by GitHub
parent ccd4ae6315
commit 507a40bd7f
2 changed files with 4 additions and 4 deletions
client/ui
release_files

@ -8,11 +8,11 @@ cask "{{ $projectName }}" do
if Hardware::CPU.intel? if Hardware::CPU.intel?
url "{{ $amdURL }}" url "{{ $amdURL }}"
sha256 "{{ crypto.SHA256 $amdFileBytes }}" sha256 "{{ crypto.SHA256 $amdFileBytes }}"
app "netbird_ui_darwin_amd64", target: "Netbird UI.app" app "netbird_ui_darwin", target: "Netbird UI.app"
else else
url "{{ $armURL }}" url "{{ $armURL }}"
sha256 "{{ crypto.SHA256 $armFileBytes }}" sha256 "{{ crypto.SHA256 $armFileBytes }}"
app "netbird_ui_darwin_arm64", target: "Netbird UI.app" app "netbird_ui_darwin", target: "Netbird UI.app"
end end
depends_on formula: "netbird" depends_on formula: "netbird"

@ -86,7 +86,7 @@ download_release_binary() {
# Unzip the app and move to INSTALL_DIR # Unzip the app and move to INSTALL_DIR
unzip -q -o "$BINARY_NAME" unzip -q -o "$BINARY_NAME"
mv "netbird_ui_${OS_TYPE}_${ARCH}/" "$INSTALL_DIR/" mv -v "netbird_ui_${OS_TYPE}/" "$INSTALL_DIR/" || mv -v "netbird_ui_${OS_TYPE}_${ARCH}/" "$INSTALL_DIR/"
else else
${SUDO} mkdir -p "$INSTALL_DIR" ${SUDO} mkdir -p "$INSTALL_DIR"
tar -xzvf "$BINARY_NAME" tar -xzvf "$BINARY_NAME"