Skip to content

Commit

Permalink
Merge pull request #5 from yast/fix_killing
Browse files Browse the repository at this point in the history
Fix killing
  • Loading branch information
jreidinger committed Jan 27, 2015
2 parents bde21c6 + a85c3c4 commit c67e9a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions package/yast2-transfer.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jan 26 13:56:18 UTC 2015 - jreidinger@suse.com

- fixed \r character lost during conversion to Ruby

-------------------------------------------------------------------
Wed Nov 13 15:56:18 UTC 2013 - jreidinger@suse.com

Expand Down
2 changes: 1 addition & 1 deletion src/modules/FTP.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def Dir(url)

Builtins.filter(
Builtins.toset(
Builtins.splitstring(Ops.get_string(dir, "output", ""), " \n")
Builtins.splitstring(Ops.get_string(dir, "output", ""), "\r\n")
)
) { |s| s != "." && s != ".." && s != "" }
end
Expand Down

0 comments on commit c67e9a6

Please sign in to comment.