From f131704b7b3461105bbb29a35700bb74a1cf925d Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Mon, 26 Dec 2011 12:20:11 +0100 Subject: [PATCH] warnify one more message --- lib/motion/project/builder.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/motion/project/builder.rb b/lib/motion/project/builder.rb index fcc591da..088ee59d 100644 --- a/lib/motion/project/builder.rb +++ b/lib/motion/project/builder.rb @@ -266,7 +266,7 @@ EOS next if File.directory?(bundle_res) next if reserved_app_bundle_files.include?(bundle_res) next if resources_files.include?(bundle_res) - $stderr.puts "File `#{bundle_res}' found in app bundle but not in `#{config.resources_dir}', removing..." + App.warn "File `#{bundle_res}' found in app bundle but not in `#{config.resources_dir}', removing" FileUtils.rm_rf(bundle_res) end end