diff options
author | Dave Reisner <d@falconindy.com> | 2010-01-09 23:38:38 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2010-01-09 23:38:38 -0500 |
commit | 0c9d737771a329354fdf2f9473a7995ad596d6c3 (patch) | |
tree | 5d2d79b8c59950f198fa53d26f186cea40ef61b0 | |
parent | 836e5e6aea4a6855130f62974ebd7f2e935c6466 (diff) | |
download | squashfu-0c9d737771a329354fdf2f9473a7995ad596d6c3.tar.gz |
Fix typo in creating mount string
-rwxr-xr-x | squashfu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -109,7 +109,7 @@ mount_union () { # build mount string # mount the first bin as rw, the rest as ro, and the seed as ro - branches="br=${BKUP_ROOT}/bins/$i=rw:" + branches="br=${BKUP_ROOT}/bins/$1=rw:" for i in $(seq $(($1 - 1)) -1 1); do branches="${branches}${BKUP_ROOT}/bins/${i}=ro:" done |