aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-03 18:59:47 -0500
committerJack Nagel2013-06-03 19:02:38 -0500
commitd38b369497c568e396894c96eaaa5121850cafd0 (patch)
tree1f159857976aa4c1f8b4ea57aeee67858db48a54 /Library
parentef0920e01d171497a45226bd8ab83b17c3151376 (diff)
downloadbrew-d38b369497c568e396894c96eaaa5121850cafd0.tar.bz2
aspell: fix audit warning
Closes Homebrew/homebrew#19731.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-aspell-dictionaries6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Contributions/cmd/brew-aspell-dictionaries b/Library/Contributions/cmd/brew-aspell-dictionaries
index 61a5e085e..86ce14904 100755
--- a/Library/Contributions/cmd/brew-aspell-dictionaries
+++ b/Library/Contributions/cmd/brew-aspell-dictionaries
@@ -40,8 +40,10 @@ EOF
done
cat <<EOF >> $brew_formulae_tmp_file
-def aspell_available_languages
- %w(${langs})
+class Aspell < Formula
+ def self.available_languages
+ %w(${langs})
+ end
end
# END generated with `basename $0`
EOF