We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e211992 commit 756a593Copy full SHA for 756a593
1 file changed
tools/wizard.sh
@@ -643,12 +643,12 @@ function select_channel () {
643
description="This channel does not have a description.txt."
644
fi
645
646
- echo -ne "${count} ${_channel}"
+ echo -ne "$(printf %02d "${count}") ${_channel}"
647
for i in $( seq 1 $(( 19 - ${#_channel} )) ); do
648
echo -ne " "
649
done
650
echo -ne "${description}\n"
651
- count=$(( count + 1 ))
+ count="$(( count + 1 ))"
652
653
echo -n ":"
654
read channel
0 commit comments