From 9442859fab05bbcdd7d1c8664a1306c40531c7a1 Mon Sep 17 00:00:00 2001 From: JanDeDobbeleer Date: Mon, 4 Nov 2024 16:01:07 +0000 Subject: [PATCH] feat: Formula v24.0.2 --- 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 b5dc39e..74260bf 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.0.1" + version "24.0.2" url "https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v#{version}/posh-darwin-#{arch}", verified: "github.com/JanDeDobbeleer/oh-my-posh/" - sha256 arm: "b8911648ec4a2872423bd479562b459dd221857c2eb6fc0c8acba060a82d22df", - intel: "95105c7b9fcb40bab3a71065347f67c1b01b24c4622662b0839b339efcbbd0c7" + sha256 arm: "a41179bd4ca91824d6a3198bb91bfac88abe2965141e320765ca7a026c3da6bd", + intel: "01fbac6251a12ebd717981bd3edd8a58802653e4e9565e8e38339451bd4d03a7" 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 816e9f9..a5ef73f 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.0.1.tar.gz" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v24.0.2.tar.gz" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" - sha256 "35a535bf7911f29ae6dd703215899d6411ac219514793790ad74ee66a4b5d6b8" + sha256 "3c687eb66eeb635bb577518805c538dba04ee4293fa74806046077b7a5e9853d" license "MIT" - version "24.0.1" + version "24.0.2" 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.0.1\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-04T13:59:30Z\'\"") + system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=24.0.2\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-04T16:01:04Z\'\"") bin.install "oh-my-posh" end mv "themes", prefix