Substituted '+=' in the bash version of msr2data to avoid problems with older bash versions on SL4

This commit is contained in:
nemu 2009-08-05 08:27:19 +00:00
parent c5b4185a99
commit a14c307f45

View File

@ -285,7 +285,7 @@ else
for PAR in "$@"
do
if [ "$PAR" == "-k" ]; then
MUSRFITPARAM+=" -k"
MUSRFITPARAM="$MUSRFITPARAM -k"
break
fi
done
@ -293,7 +293,7 @@ else
for PAR in "$@"
do
if [ "$PAR" == "-t" ]; then
MUSRFITPARAM+=" -t"
MUSRFITPARAM="$MUSRFITPARAM -t"
break
fi
done