From 0117a42532a834a0d0c3e9471a267e97e47a36bc Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Sun, 9 May 2010 16:16:13 +0700 Subject: [PATCH] Output the "Done" message as before --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index 9e7712c..2941527 100644 --- a/Rakefile +++ b/Rakefile @@ -25,6 +25,7 @@ def templated_build(name, opts={}) puts "Packaging for #{name}" sh "mkdir -p #{opts[:location]}" if opts[:location] sh "cat #{source}/#{target_js}.tpl.pre mustache.js #{source}/#{target_js}.tpl.post > #{opts[:location] || '.'}/#{target_js}" + puts "Done, see #{opts[:location] || '.'}/#{target_js}" end end