Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Formula/zli-beta.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require "language/node"
require "os"
require_relative "../lib/git_hub_private_repository_download_strategy"
Expand All @@ -17,11 +17,11 @@
sha256 cellar: :any_skip_relocation, arm64_sonoma: "ffa78c213835790c5be165cac28aa97fabf35c579bd7ce26c8b3557f69035dad"
end

depends_on "go@1.20" => :build
depends_on "go" => :build
depends_on "node@20" => :build

def install
system "npm", "install"

Check failure on line 24 in Formula/zli-beta.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

FormulaAudit/StdNpmArgs: Use `std_npm_args` for npm install

Check failure on line 24 in Formula/zli-beta.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-15)

FormulaAudit/StdNpmArgs: Use `std_npm_args` for npm install
system "npm", "run", "release-prod"

if OS.linux?
Expand Down
2 changes: 1 addition & 1 deletion Formula/zli-beta.rb.template
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class ZliBeta < Formula
license "Apache-2.0"
head "https://github.com/bastionzero/zli.git", branch: "master"

depends_on "go@1.20" => :build
depends_on "go" => :build
depends_on "node@20" => :build

def install
Expand Down
2 changes: 1 addition & 1 deletion Formula/zli.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require "language/node"
require "os"
require_relative "../lib/git_hub_private_repository_download_strategy"
Expand All @@ -17,11 +17,11 @@
sha256 cellar: :any_skip_relocation, arm64_sonoma: "3e751f5828923854114e709629eb687509dbaf95aa05a4b96825b84867e5846c"
end

depends_on "go@1.20" => :build
depends_on "go" => :build
depends_on "node@20" => :build

def install
system "npm", "install"

Check failure on line 24 in Formula/zli.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

FormulaAudit/StdNpmArgs: Use `std_npm_args` for npm install

Check failure on line 24 in Formula/zli.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-15)

FormulaAudit/StdNpmArgs: Use `std_npm_args` for npm install
system "npm", "run", "release-prod"

if OS.linux?
Expand Down
2 changes: 1 addition & 1 deletion Formula/zli.rb.template
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Zli < Formula
license "Apache-2.0"
head "https://github.com/bastionzero/zli.git", branch: "master"

depends_on "go@1.20" => :build
depends_on "go" => :build
depends_on "node@20" => :build

def install
Expand Down
Loading