From 4e0bf624f44ae4c620f5218936a9f7f4cec3271e Mon Sep 17 00:00:00 2001 From: Velsoth Date: Mon, 11 Mar 2019 19:58:57 +0000 Subject: [PATCH] Fix identation --- entrypoint.sh | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 803da4a..280bf70 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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