Skip to content
Snippets Groups Projects
Commit ead9331a authored by jaden's avatar jaden
Browse files

fix read flag from new "-A" to old "-a"

parent cb171f39
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ dav_recursive_mkdir() {
# split path into an array of path segments
# uses a subshell so setting the IFS doesnt mess up *this* shell
local path_segments=($(IFS=/ read -r -A arr <<< "$1"; echo "$arr"))
local path_segments=($(IFS=/ read -r -a arr <<< "$1"; echo "$arr"))
local current_subpath=''
# loop through segments
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment