Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit 3a9d026

Browse files
committed
fix inabox upload
1 parent eec2fa5 commit 3a9d026

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tasks/gems.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@
2020
mtime = File.stat(gem).mtime
2121
mtime > gem_fst[0] ? [mtime, gem] : gem_fst
2222
end
23+
2324
if host
24-
`gem inabox -g #{host} #{last_created_gem_fst[1]}`
25+
puts "pushing #{last_created_gem_fst[1]} to #{host}"
26+
`gem inabox #{last_created_gem_fst[1]} -g #{host}`
2527
else
28+
puts "pushing #{last_created_gem_fst[1]}"
2629
`gem inabox #{last_created_gem_fst[1]}`
2730
end
2831
end

0 commit comments

Comments
 (0)