Fix identation

This commit is contained in:
Fivel Sotheby 2019-03-11 19:58:57 +00:00
parent 72a88660f6
commit 4e0bf624f4
1 changed files with 17 additions and 17 deletions

View File

@ -71,41 +71,41 @@ else
case $1 in
-j | --threads )
threads="$2"
shift
threads="$2"
shift
;;
-i | --initialize )
manifest="$2"
branch="$3"
initializeSourceTree "$manifest" "$branch"
shift
shift
manifest="$2"
branch="$3"
initializeSourceTree "$manifest" "$branch"
shift
shift
;;
-p | --pull )
repoSync
repoSync
;;
-t | --build-toolchain )
buildToolchain
buildToolchain
;;
-b | --build )
device="$2"
buildPackage "$device"
shift
device="$2"
buildPackage "$device"
shift
;;
-B | --partial )
device="$2"
sub_project="$3"
partialBuildPackage "$device" "$sub_project"
shift
device="$2"
sub_project="$3"
partialBuildPackage "$device" "$sub_project"
shift
;;
-c | --clean )
cleanBuild
cleanBuild
;;
esac