From 9a1aac10c9a00c2526fe269e0f685fbbf7dee87c Mon Sep 17 00:00:00 2001 From: JanDeDobbeleer Date: Wed, 20 Nov 2024 19:40:03 +0000 Subject: [PATCH] feat: Formula v24.6.5 --- Casks/oh-my-posh.rb | 6 +++--- oh-my-posh.rb | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Casks/oh-my-posh.rb b/Casks/oh-my-posh.rb index f2acf4d..048c7d2 100644 --- a/Casks/oh-my-posh.rb +++ b/Casks/oh-my-posh.rb @@ -2,11 +2,11 @@ desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" arch arm: "arm64", intel: "amd64" - version "24.6.4" + version "24.6.5" url "https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v#{version}/posh-darwin-#{arch}", verified: "github.com/JanDeDobbeleer/oh-my-posh/" - sha256 arm: "f5d322505604c228ec501e44b08e7678d5feddb712e76e93e09a4e99e9e00c12", - intel: "6af6c5e6c0c571f2e855c7f51ce17c66f190dc5b32ea8194d122fc03e74da3b4" + sha256 arm: "d792bd95bbdcb17071d2355be7184fbcdac285de4ec550c605b2f622fc047628", + intel: "a78f83db46215c8bc33891bf06a536c920883868468708ad11123f5c22ab56fc" name "oh-my-posh" binary "posh-darwin-#{arch}", target: "oh-my-posh" auto_updates true diff --git a/oh-my-posh.rb b/oh-my-posh.rb index 91e6558..f594c97 100644 --- a/oh-my-posh.rb +++ b/oh-my-posh.rb @@ -1,18 +1,18 @@ class OhMyPosh < Formula desc "Prompt theme engine for any shell" homepage "https://ohmyposh.dev" - url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v24.6.4.tar.gz" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v24.6.5.tar.gz" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" - sha256 "dac5e27f9e9620a75742921ba5b27829f8344b357f9b461cacdb80b31181a022" + sha256 "667da8545a426a8744c0bfd1b8d00b996404d406bbd33babeb9d6a6a9dd43bb2" license "MIT" - version "24.6.4" + version "24.6.5" depends_on "go@1.22" => :build def install Dir.chdir("src") do ENV["GOPROXY"] = ENV.has_key?("HOMEBREW_GOPROXY") ? ENV["HOMEBREW_GOPROXY"] : "" - system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=24.6.4\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-17T11:31:45Z\'\"") + system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=24.6.5\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-20T19:40:00Z\'\"") bin.install "oh-my-posh" end mv "themes", prefix