rbrsync 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rbrsync/rbrsync.rb +1 -3
- data/lib/rbrsync/version.rb +1 -1
- metadata +1 -1
data/lib/rbrsync/rbrsync.rb
CHANGED
@@ -242,9 +242,7 @@ module RbRsync
|
|
242
242
|
def go!
|
243
243
|
raise ArgumentError.new("a source and destination must be specified") if to.nil? || from.nil?
|
244
244
|
|
245
|
-
|
246
|
-
|
247
|
-
status = Open4.popen4(*cmd) do |pid, stdin, stdout, stderr|
|
245
|
+
status = Open4.popen4(command) do |pid, stdin, stdout, stderr|
|
248
246
|
puts stderr.read if stderr
|
249
247
|
end
|
250
248
|
|
data/lib/rbrsync/version.rb
CHANGED