Skip to content

Commit

Permalink
Fix zipping to *not* follow symlinks. Breaks narwhal.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Robinson committed May 20, 2009
1 parent b99ba2c commit b8be5d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ task :deploy => [:tools_download, :starter_download, :docs] do
starter_zip_output = File.join($BUILD_DIR, 'Cappuccino', 'Starter.zip')
rm_rf(starter_zip_output)

`cd #{cappuccino_output_path} && zip -r -8 Starter.zip Starter`
`cd #{cappuccino_output_path} && zip -ry -8 Starter.zip Starter`

#zip the tools pack
tools_zip_output = File.join($BUILD_DIR, 'Cappuccino', 'Tools.zip')
rm_rf(tools_zip_output)

`cd #{cappuccino_output_path} && zip -r -8 Tools.zip Tools`
`cd #{cappuccino_output_path} && zip -ry -8 Tools.zip Tools`
end

file_d $STARTER_DOWNLOAD_APPLICATION => [$TOOLS_DOWNLOAD_ENV] do
Expand Down

0 comments on commit b8be5d3

Please sign in to comment.