From 0bbdc7d5b634378c2a026d0ae99328b357d9a8fd Mon Sep 17 00:00:00 2001 From: JanDeDobbeleer Date: Wed, 13 Nov 2024 23:02:09 +0000 Subject: [PATCH] feat: Formula v24.4.1 --- 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 d40354a..dc2ccf0 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.4.0" + version "24.4.1" url "https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v#{version}/posh-darwin-#{arch}", verified: "github.com/JanDeDobbeleer/oh-my-posh/" - sha256 arm: "d81a8592fc3125793cb2aabc351d73638946f390ce3fc99b1c302b4da28a84ec", - intel: "e6e753e934ef405bacd457ccc223932df1857dce20ba71a5c1fc4a7150cf6d70" + sha256 arm: "1e9e32c621be95235e37708d2d8be59c010dbbb32997fed59d8341f98d9faf2d", + intel: "f5f98ba461697a2f9e68e54cf0b41d5cb51ccb2e96ba2f52eca238185410eadb" 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 8b73133..ea09988 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.4.0.tar.gz" + url "https://github.com/JanDeDobbeleer/oh-my-posh/archive/v24.4.1.tar.gz" head "https://github.com/JanDeDobbeleer/oh-my-posh.git", branch: "main" - sha256 "5c5381db204b3d9b4074a7628f8eb1c0737a0bd1afe1473d33fe16c4617b9f3f" + sha256 "0641e2d04381831d9009a6f739040ddba99929762f2e32ff368cce6d2ebb0a37" license "MIT" - version "24.4.0" + version "24.4.1" 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.4.0\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-13T16:05:07Z\'\"") + system("go build -o=oh-my-posh -ldflags=\"-s -w -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Version=24.4.1\' -X \'github.com/jandedobbeleer/oh-my-posh/src/build.Date=2024-11-13T23:02:07Z\'\"") bin.install "oh-my-posh" end mv "themes", prefix