lib/braid/operations.rb in braid-1.0.0 vs lib/braid/operations.rb in braid-1.0.1
- old
+ new
@@ -183,10 +183,10 @@
end
def fetch(remote = nil, *args)
args.unshift "-n #{remote}" if remote
# open4 messes with the pipes of index-pack
- sh("git fetch #{args.join(' ')} 2>&1 > #{Gem.win_platform? ? 'nul' : '/dev/null'}")
+ sh("git fetch #{args.join(' ')} > #{Gem.win_platform? ? 'nul' : '/dev/null'}")
end
def checkout(treeish)
invoke(:checkout, treeish)
true