Fix handling of binds containing spaces
```bash binds+=( '/etc/tmp/s s' ) ``` was handled incorrectly before.
This commit is contained in:
parent
bd6ea489e3
commit
0facff3a01
@ -55,7 +55,7 @@ bind_dirs() {
|
||||
## ro: read-only
|
||||
## rw: read-write
|
||||
|
||||
for fso_ro in ${binds[@]}; do
|
||||
for fso_ro in "${binds[@]}"; do
|
||||
local symlink_level_counter
|
||||
symlink_level_counter="0"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user