Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7f6d72

Browse files
committed
Add github-run-script
1 parent fcd0651 commit a7f6d72

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Formula/github-run-script.rb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
require "language/node"
2+
3+
class GithubRunScript < Formula
4+
desc "Run a script on multiple repositories, cloning them if needed"
5+
homepage "https://github.com/PythonCoderAS/github-run-script#readme"
6+
url "https://registry.npmjs.org/github-run-script/-/github-run-script-1.0.0.tgz"
7+
sha256 "d6641262d23d3f67c1f1c041e1476c74d441a5127834b097a2f766ce9e6acb6c"
8+
license "MIT"
9+
10+
livecheck do
11+
url :stable
12+
end
13+
14+
depends_on "node"
15+
16+
def install
17+
system "npm", "install", *Language::Node.std_npm_install_args(libexec)
18+
bin.install_symlink Dir["#{libexec}/bin/*"]
19+
end
20+
21+
test do
22+
raise "Test not implemented."
23+
end
24+
end

0 commit comments

Comments
 (0)