diff options
Diffstat (limited to 'scripts/bloatcheck')
-rwxr-xr-x | scripts/bloatcheck | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bloatcheck b/scripts/bloatcheck index fff4690f..30492c64 100755 --- a/scripts/bloatcheck +++ b/scripts/bloatcheck @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh if [ $# -ne 2 ] then @@ -40,7 +40,7 @@ do_bloatcheck() fi SIZE=$(printf "%d" "0x$b") - if [ "$a" == "-" ] + if [ "$a" = "-" ] then OLD=$(($OLD+$SIZE)) SIZE=$((-1*$SIZE)) |