rbrsync 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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