Skip to content

Commit

Permalink
modgit 1.0.1 (new formula)
Browse files Browse the repository at this point in the history
modgit is a shell script for deploying multiple Git repositories in
root folder of any project, which is not possible with default git
submodule command. A common use case would be the easy installation of
Magento modules that need to be deployed in root folder.

Closes Homebrew/legacy-homebrew#41062.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
rafaelgarrido authored and MikeMcQuaid committed Jun 25, 2015
1 parent b56003f commit 7ecf0d4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Formula/modgit.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class Modgit < Formula
desc "Tool for git repo deploy with filters. Used for magento development."
homepage "https://github.com/jreinke/modgit"
url "https://github.com/jreinke/modgit/archive/v1.0.1.tar.gz"
sha256 "3df1ccddaacf386a32be0fe5b6333438f17876bc6a4851d9bc22a68a73ae314d"

def install
bin.install "modgit"
end

test do
system "#{bin}/modgit"
end
end

0 comments on commit 7ecf0d4

Please sign in to comment.