Skip to content

Commit

Permalink
shell_split: return Vector of String instead of AbstractString
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski committed Feb 7, 2017
1 parent 0900553 commit dd14457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/shell.jl
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ end

function shell_split(s::AbstractString)
parsed = shell_parse(s, false)[1]
args = AbstractString[]
args = String[]
for arg in parsed
push!(args, string(arg...))
end
Expand Down

0 comments on commit dd14457

Please sign in to comment.