diff options
| author | Jack Nagel | 2014-07-06 19:44:35 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-07-06 19:49:36 -0500 | 
| commit | afcdd696ccbb1645f0c01555e6e8fafcdbbef689 (patch) | |
| tree | 77ff8d9046d74f2ebe1d0aa908cd823f1cc7290c | |
| parent | fe9668564b4804567b763b095cc46adeb9b45be4 (diff) | |
| download | homebrew-afcdd696ccbb1645f0c01555e6e8fafcdbbef689.tar.bz2 | |
Pass arguments directly to skip_clean
| -rw-r--r-- | Library/Formula/apache-forrest.rb | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/Library/Formula/apache-forrest.rb b/Library/Formula/apache-forrest.rb index 2e7d7fd94..3aea00cd7 100644 --- a/Library/Formula/apache-forrest.rb +++ b/Library/Formula/apache-forrest.rb @@ -12,8 +12,9 @@ class ApacheForrest < Formula    # Prevent deletion of intentionally-empty subdirs inside of    # template directories: -  skip_clean ["libexec/main/template-sites", "libexec/main/fresh-site", -              "libexec/plugins/pluginTemplate"] +  skip_clean "libexec/main/template-sites", +    "libexec/main/fresh-site", +    "libexec/plugins/pluginTemplate"    def install      libexec.install Dir['*'] | 
