Skip to content

Commit

Permalink
swi-prolog: avoid misleading audit warning
Browse files Browse the repository at this point in the history
Due to the unnecessary inner quotes, the audit check wouldn't see the
pipe and misleadingly complain:

  swi-prolog:
    * Use `system "echo", "'` instead of `system "echo '`
  • Loading branch information
UniqMartin committed May 26, 2016
1 parent 1a90e64 commit 7039eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Formula/swi-prolog.rb
Expand Up @@ -69,7 +69,7 @@ def install
# './prepare' prompts the user to build documentation
# (which requires other modules). '3' is the option
# to ignore documentation.
system "echo '3' | ./prepare" if build.head?
system "echo 3 | ./prepare" if build.head?
system "./configure", *args
system "make"
system "make", "install"
Expand Down

0 comments on commit 7039eed

Please sign in to comment.