From: Song, BinX Date: Thu, 13 Apr 2017 06:40:30 +0000 (+0800) Subject: BaseTools: Sync BrotliCompress script the same style X-Git-Tag: edk2-stable201903~4078 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=8ee193e898854e27a676ebddb775188e20882a9f BaseTools: Sync BrotliCompress script the same style - Sync BrotliCompress script the same style with BrotliCompress.bat Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Bell Song Reviewed-by: Liming Gao --- diff --git a/BaseTools/BinWrappers/PosixLike/BrotliCompress b/BaseTools/BinWrappers/PosixLike/BrotliCompress index 49358b2329..ca32d6a55c 100755 --- a/BaseTools/BinWrappers/PosixLike/BrotliCompress +++ b/BaseTools/BinWrappers/PosixLike/BrotliCompress @@ -14,39 +14,48 @@ QLT="-q 9" INPUTFLAG=0 -while [ $# != 0 ];do - case $1 in - -d) +for arg; do + if [ $1 = -d ] + then INPUTFLAG=1 - ARGS+="$1 " - ;; - -e) + fi + if [ $1 = -e ] + then INPUTFLAG=1 - ;; - -g) + shift + continue; + fi + if [ $1 = -g ] + then ARGS+="$1 $2 " shift - ;; - -o) + shift + continue; + fi + if [ $1 = -o ] + then ARGS+="$1 $2 " shift - ;; - -q) + shift + continue; + fi + if [ $1 = -q ] + then QLT="$1 $2 " shift - ;; - *) - if [ $INPUTFLAG -eq 1 ] - then - if [ -z $2 ] - then - ARGS+="$QLT -i $1 " - break; - fi + shift + continue; + fi + if [ $INPUTFLAG -eq 1 ] + then + if [ -z $2 ] + then + ARGS+="$QLT -i $1 " + break; fi - ARGS+="$1 " - esac + fi +ARGS+="$1 " shift done