Skip to content

Commit

Permalink
Print out errors to see why incremental publishing is failing.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias committed Nov 27, 2012
1 parent d9acce8 commit 1a7b088
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/incremental/bin/publish-incrementals.rb
Expand Up @@ -29,17 +29,17 @@ def latest_base_url

def dav_mkdir_p(url)
puts "mkdir #{url}"
@dav.mkcol( url )
puts @dav.mkcol( url )
end

def dav_put(url, file, remember = true)
puts "put #{url}"
@dav.put( url, file )
puts @dav.put( url, file )
@published_artifacts << url if remember
end

def dav_rm_rf(url)
@dav.delete( url )
puts @dav.delete( url )
end

def dav_remote_cp_r(src, dest)
Expand Down

0 comments on commit 1a7b088

Please sign in to comment.