diff options
| author | Jack Nagel | 2014-05-30 13:17:26 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-30 13:17:29 -0500 |
| commit | dbe23ee357bb069a7e5b4ce06e8466feb3aadbeb (patch) | |
| tree | 5407223aca52342873d023907b520b0bb92f0bf0 /Library/Formula/aws-elasticbeanstalk.rb | |
| parent | afff2b2377e67bb9a7220cbc8de62b91b06e5ce8 (diff) | |
| download | homebrew-dbe23ee357bb069a7e5b4ce06e8466feb3aadbeb.tar.bz2 | |
Remove some unnecessary usage of Dir[]
Diffstat (limited to 'Library/Formula/aws-elasticbeanstalk.rb')
| -rw-r--r-- | Library/Formula/aws-elasticbeanstalk.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Library/Formula/aws-elasticbeanstalk.rb b/Library/Formula/aws-elasticbeanstalk.rb index 3ac6a8df6..d54f40627 100644 --- a/Library/Formula/aws-elasticbeanstalk.rb +++ b/Library/Formula/aws-elasticbeanstalk.rb @@ -7,10 +7,7 @@ class AwsElasticbeanstalk < AmazonWebServicesFormula def install # Remove versions for other platforms. - rm_rf Dir['eb/windows'] - rm_rf Dir['eb/linux'] - rm_rf Dir['AWSDevTools/Windows'] - + rm_rf %w{eb/windows eb/linux AWSDevTools/Windows} libexec.install %w{AWSDevTools api eb} bin.install_symlink libexec/"eb/macosx/python2.7/eb" end |
