Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd0651 commit a7f6d72Copy full SHA for a7f6d72
Formula/github-run-script.rb
@@ -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
20
21
+ test do
22
+ raise "Test not implemented."
23
24
+end
0 commit comments