aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-07-13 19:08:45 -0500
committerJack Nagel2013-07-13 19:08:45 -0500
commitca18c0697de52da57ef10946f5f7c423e72361ab (patch)
treeb3e78b00d4386f1e9056bb71f992743c71b456ee /Library
parent7eb6bb98a87b3adcfd2859622d17ec1fd9b9caf2 (diff)
downloadhomebrew-ca18c0697de52da57ef10946f5f7c423e72361ab.tar.bz2
avidemux: don't require 'find' explicitly
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/avidemux.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/avidemux.rb b/Library/Formula/avidemux.rb
index 2e73c7227..1b4530418 100644
--- a/Library/Formula/avidemux.rb
+++ b/Library/Formula/avidemux.rb
@@ -1,5 +1,4 @@
require 'formula'
-require 'find'
class Avidemux < Formula
homepage 'http://avidemux.sourceforge.net/'
@@ -174,7 +173,7 @@ class Avidemux < Formula
cellar_plug_path = lib+'ADM_plugins'
mkdir_p app_lib_path
cp_r cellar_plug_path, app_lib_path
- Find.find(app_plug_path) do |f|
+ app_plug_path.find do |f|
rm f if File.fnmatch('*cli.dylib', f)
end
end