diff options
| author | Jack Nagel | 2012-04-15 22:40:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-04-15 22:40:05 -0500 |
| commit | c2da6988796837b1ab4a6c6e322052c815d75982 (patch) | |
| tree | 1c74854136ffa3a8b36f596c10b078b0d8c29edf /Library | |
| parent | 4774eaf93d9f325f6cd38628ead67ed5062940a6 (diff) | |
| download | homebrew-c2da6988796837b1ab4a6c6e322052c815d75982.tar.bz2 | |
redis: don't overwrite existing config file
Fixes #11352.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/redis.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/redis.rb b/Library/Formula/redis.rb index 6adbb8619..7e140dac8 100644 --- a/Library/Formula/redis.rb +++ b/Library/Formula/redis.rb @@ -30,7 +30,7 @@ class Redis < Formula s.gsub! "\# bind 127.0.0.1", "bind 127.0.0.1" end - etc.install "redis.conf" + etc.install 'redis.conf' unless (etc/'redis.conf').exist? plist_path.write startup_plist plist_path.chmod 0644 end |
