tools: Remove ; after break for all shell script

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2020-03-21 21:23:44 +08:00 committed by David Sidrane
parent 580364362c
commit 0456b70cd5
5 changed files with 5 additions and 5 deletions

View File

@ -71,7 +71,7 @@ while [ ! -z "$1" ]; do
echo " Enable script debug"
;;
* )
break;
break
;;
esac
shift

View File

@ -75,7 +75,7 @@ while [ ! -z "$1" ]; do
exit 0
;;
* )
break;
break
;;
esac
shift

View File

@ -98,7 +98,7 @@ while [ ! -z "$1" ]; do
* )
testfile="$1"
shift
break;
break
;;
esac
shift

View File

@ -77,7 +77,7 @@ while [ ! -z "$1" ]; do
exit 0
;;
* )
break;
break
;;
esac
shift

View File

@ -78,7 +78,7 @@ while [ ! -z "$1" ]; do
exit 0
;;
* )
break;
break
;;
esac
shift