Fix handling of binds containing spaces

```bash
binds+=( '/etc/tmp/s s' )
```

was handled incorrectly before.
This commit is contained in:
Robin Schneider 2017-03-14 20:10:26 +01:00
parent bd6ea489e3
commit 0facff3a01
No known key found for this signature in database
GPG Key ID: 489A4D5EC353C98A

View File

@ -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"