From e85ccde7acbbe4e443de56742002a463a91b95dd Mon Sep 17 00:00:00 2001 From: mlsmaycon Date: Sat, 21 May 2022 01:53:59 +0200 Subject: [PATCH] Fix app path from zip --- client/ui/netbird-ui.rb.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/ui/netbird-ui.rb.tmpl b/client/ui/netbird-ui.rb.tmpl index a8926e47f..b74037990 100644 --- a/client/ui/netbird-ui.rb.tmpl +++ b/client/ui/netbird-ui.rb.tmpl @@ -8,14 +8,14 @@ cask "{{ $projectName }}" do if Hardware::CPU.intel? url "{{ $amdURL }}" sha256 "{{ crypto.SHA256 $amdFileBytes }}" + app "netbird_ui_darwin_amd64", target: "Netbird UI.app" else url "{{ $armURL }}" sha256 "{{ crypto.SHA256 $armFileBytes }}" + app "netbird_ui_darwin_arm64", target: "Netbird UI.app" end name "Netbird UI" desc "Netbird UI Client" homepage "https://www.netbird.io/" - - app "#{version}", target: "Netbird UI.app" end \ No newline at end of file