update_kernel.sh: fix syntax error
authorKevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Sun, 4 Feb 2018 10:40:24 +0000 (10:40 +0000)
committerKevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Sun, 4 Feb 2018 10:40:24 +0000 (10:40 +0000)
commit544e33ac98005b587db4e46e3b9c746da2957914
tree482c1eeed3366b7780c402f6b75c3f6d066d4f87
parent4dafa7abba77b2c1e9c83cd1c76a13a7c97cc571
update_kernel.sh: fix syntax error

Replace while [ $# > 0 ]; with while [ $# -gt 0 ]

The former redirects $# to a file '0' creating a stray file as the least
worrying of side effects.

Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
update_kernel.sh