[ 
https://issues.apache.org/jira/browse/BUILDR-460?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12920441#action_12920441
 ] 

Alex Boisvert commented on BUILDR-460:
--------------------------------------

Ok, added a warning if path in zipfile contains a backslash.


boisv...@smudge:~/svn/buildr-trunk$ svn commit -m "Add warning if path in 
zipfile contains backslash" lib/buildr/packaging/ziptask.rb
Sending        lib/buildr/packaging/ziptask.rb
Transmitting file data .
Committed revision 1021996.


> ZipTask uses backslash as directory separator under Windows
> -----------------------------------------------------------
>
>                 Key: BUILDR-460
>                 URL: https://issues.apache.org/jira/browse/BUILDR-460
>             Project: Buildr
>          Issue Type: Bug
>          Components: Packaging
>    Affects Versions: 1.3.5
>            Reporter: Tammo van Lessen
>
> As reported in ODE-858, the following packaging spec created a zip file with 
> backslashes as directory separators under Windows. I believe such separators 
> should always be slashes, no matter which operating system is used.
> package(:zip, :id=>"#{id}-sources").path("#{id}-sources-#{version}").tap do 
> |zip|
>     if File.exist?(".svn")
>       `svn status -v`.reject { |l| l[0] == ?? || l[0] == ?D || l.strip.empty? 
> || l[0...3] == "---"}.
>         map { |l| l.split.last }.reject { |f| File.directory?(f) }.
>         each { |f| zip.include f, :as=>f }
>     else
>       zip.include Dir.pwd, :as=>"."
>     end
>   end

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to