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 case $1 in
-j | --threads ) -j | --threads )
threads="$2" threads="$2"
shift shift
;; ;;
-i | --initialize ) -i | --initialize )
manifest="$2" manifest="$2"
branch="$3" branch="$3"
initializeSourceTree "$manifest" "$branch" initializeSourceTree "$manifest" "$branch"
shift shift
shift shift
;; ;;
-p | --pull ) -p | --pull )
repoSync repoSync
;; ;;
-t | --build-toolchain ) -t | --build-toolchain )
buildToolchain buildToolchain
;; ;;
-b | --build ) -b | --build )
device="$2" device="$2"
buildPackage "$device" buildPackage "$device"
shift shift
;; ;;
-B | --partial ) -B | --partial )
device="$2" device="$2"
sub_project="$3" sub_project="$3"
partialBuildPackage "$device" "$sub_project" partialBuildPackage "$device" "$sub_project"
shift shift
;; ;;
-c | --clean ) -c | --clean )
cleanBuild cleanBuild
;; ;;
esac esac