fix device counting

master
George Danchev 12 years ago
parent e30bf90933
commit d3e0451631

@ -40,7 +40,10 @@ get_speeds() {
get_devices() {
echo -e "\n${SELF}: Running: $RELENG_XORRISO -devices 2>/dev/null | grep \"\-dev\""
DEVICES=`$RELENG_XORRISO -devices 2>/dev/null | grep "\-dev"`
NUM_DEV=`echo ${DEVICES} | wc -l`
NUM_DEV=`(cat <<+
${DEVICES}
+
) | wc -l`
case "${NUM_DEV}" in
0)

Loading…
Cancel
Save