six-rsync 0.6.5 → 0.6.6
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/bin/six-rsync +1 -0
- data/bin/six-rsync-mirror +1 -0
- data/lib/six/rsync/lib.rb +4 -2
- data/lib/six/rsync.rb +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
data/bin/six-rsync
CHANGED
data/bin/six-rsync-mirror
CHANGED
data/lib/six/rsync/lib.rb
CHANGED
@@ -859,8 +859,10 @@ module Six
|
|
859
859
|
end
|
860
860
|
|
861
861
|
if shebang
|
862
|
-
shebang[/^SIX-SHEBANG: (
|
863
|
-
|
862
|
+
if shebang[/^SIX-SHEBANG: (-?.*), (-?.*)/]
|
863
|
+
pid = $1.to_i if $1
|
864
|
+
status = $2.to_i if $2
|
865
|
+
end
|
864
866
|
end
|
865
867
|
else
|
866
868
|
# Handle last bits in the buffer
|
data/lib/six/rsync.rb
CHANGED