Skip to content

Commit

Permalink
make sure we're bundling up our assets
Browse files Browse the repository at this point in the history
  • Loading branch information
thbishop committed Dec 27, 2010
1 parent 3475738 commit 1ba1458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ task :package do
puts "done"
TO_REMOVE.each { |item| print "Removing #{File.join(tmp_dir, item) }..."; FileUtils.rm_r File.join(tmp_dir, item); puts 'done' }
print "Creating zip #{zip_pkg}...."
`cd #{tmp_dir}; zip -9 #{zip_pkg} *; cd -`
`cd #{tmp_dir}; zip -9 -r #{zip_pkg} *; cd -`
if $?.exitstatus == 0
puts 'done'
else

0 comments on commit 1ba1458

Please sign in to comment.