From 0b82f0ff5a7a1e0fab2bba95977cee8489fd4a92 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Wed, 8 Nov 2023 16:36:10 +0100 Subject: [PATCH] feat: add bin install for macos x86_64 --- Formula/keyweave.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Formula/keyweave.rb diff --git a/Formula/keyweave.rb b/Formula/keyweave.rb new file mode 100644 index 0000000..b4691b3 --- /dev/null +++ b/Formula/keyweave.rb @@ -0,0 +1,14 @@ +# Documentation: https://docs.brew.sh/Formula-Cookbook +# https://rubydoc.brew.sh/Formula +# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! +class Keyweave < Formula + desc "Fetches secrets from Azure Key Vault and weaves them into a convenient .env file" + homepage "https://github.com/bartvdbraak/keyweave" + url "https://github.com/bartvdbraak/keyweave/releases/download/v0.2.0/keyweave-x86_64-apple-darwin.tar.xz" + sha256 "d88f646619d69f088fb2a1c223c7b1cf6199659fd593abc475851ddee866d4e9" + version "0.2.0" + + def install + bin.install "keyweave" + end +end \ No newline at end of file