avidemux: don't require 'find' explicitly
This commit is contained in:
parent
c479b4ed4a
commit
52152049f9
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue