11 lines
194 B
Ruby
Raw Normal View History

module Language
module Haskell
module Cabal
def cabal_clean_lib
# avoid installing any Haskell libraries, as a matter of policy
rm_rf lib
end
end
end
end