Skip to content

Commit

Permalink
putty: fix audit
Browse files Browse the repository at this point in the history
putty:
  * `depends_on` (line 28) should be put before `conflicts_with` (line 17)
  • Loading branch information
Miguel Araújo authored and MikeMcQuaid committed Feb 12, 2017
1 parent 7c758c8 commit 501fb5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Formula/putty.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ class Putty < Formula
sha256 "066385a68e8c73e006f886930a267899eb02da47b8802b17c8f9cfe1263a45b6" => :mavericks
end

conflicts_with "pssh", :because => "both install `pscp` binaries"

head do
url "git://git.tartarus.org/simon/putty.git"

Expand All @@ -27,6 +25,8 @@ class Putty < Formula

depends_on "pkg-config" => :build

conflicts_with "pssh", :because => "both install `pscp` binaries"

def install
if build.head?
system "./mkfiles.pl"
Expand Down

0 comments on commit 501fb5d

Please sign in to comment.