summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2010-12-06 17:10:46 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2010-12-06 17:10:46 +0100
commite26b3e09147a5f5094616f733ec5208b6ab51e16 (patch)
tree2facf238ed2435faf0ade5fa25f0bb9f1aa6b787 /src
parent2c5994e359da4299ffb0a9e7f3f338002677a904 (diff)
fix bug which prevented populating possible FS array
Diffstat (limited to 'src')
-rw-r--r--src/core/libs/lib-blockdevices-filesystems.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-blockdevices-filesystems.sh b/src/core/libs/lib-blockdevices-filesystems.sh
index 6e792f7..9734749 100644
--- a/src/core/libs/lib-blockdevices-filesystems.sh
+++ b/src/core/libs/lib-blockdevices-filesystems.sh
@@ -82,7 +82,7 @@ get_possible_fs () {
possible_fs=
for fs in "${!filesystem_programs[@]}"
do
- which ${filesystem_programs[$fs]} &>/dev/null && possible_fs=("${possible_fs[@]}" fs)
+ which ${filesystem_programs[$fs]} &>/dev/null && possible_fs=("${possible_fs[@]}" $fs)
done
}