six-rsync 0.4.8 → 0.4.9
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/Rakefile +1 -1
- data/lib/six/rsync/lib.rb +1 -1
- data/lib/six/rsync.rb +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
data/lib/six/rsync/lib.rb
CHANGED
|
@@ -663,7 +663,7 @@ module Six
|
|
|
663
663
|
end
|
|
664
664
|
|
|
665
665
|
def md5(path)
|
|
666
|
-
unless @md5_installed ||= begin; %x[md5sum]; $? == 0; rescue; false; end
|
|
666
|
+
unless @md5_installed ||= begin; %x[md5sum --help]; $? == 0; rescue; false; end
|
|
667
667
|
puts "md5sum command not found"
|
|
668
668
|
raise RsyncError
|
|
669
669
|
end
|
data/lib/six/rsync.rb
CHANGED