mirror of https://github.com/acidanthera/audk.git
edksetup.sh: when executing arithmetic commands, $ isn't needed
Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org> Message-Id: <20190716165538.57960-3-rebecca@bsdio.com>
This commit is contained in:
parent
07d80d35ad
commit
11e5fc6601
|
@ -199,7 +199,7 @@ do
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
I=$(($I - 1))
|
I=$((I - 1))
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $I -gt 0 ]
|
if [ $I -gt 0 ]
|
||||||
|
|
Loading…
Reference in New Issue