#!/bin/sh # Created by l1ving on 17/02/20 # # Used to setup workspace on unix and fix building # # Usage: "./setupWorkspace.sh" __dir="$(cd "$(dirname "$0")" && pwd)" # echo "[$(date +"%H:%M:%S")] Found script in dir '$__dir', trying to cd into KAMI Blue folder" cd "$__dir" || exit $? cd ../ || exit $? # echo "[$(date +"%H:%M:%S")] Checking if git is installed..." if [ -z "$(which git)" ]; then echo "[$(date +"%H:%M:%S")] ERROR: Git is not installed, please make sure you install the CLI version of git, not some desktop wrapper for it" >&2 exit 1 fi echo "[$(date +"%H:%M:%S")] Git is installed!" # echo "[$(date +"%H:%M:%S")] Checking for .git dir..." if [ ! -d ".git" ]; then echo "[$(date +"%H:%M:%S")] ERROR: Could not detect git repository, exiting" >&2 exit 1 fi echo "[$(date +"%H:%M:%S")] Found git repository!" # echo "[$(date +"%H:%M:%S")] Downloading git submodules..." git submodule update --init --recursive || { echo "[$(date +"%H:%M:%S")] ERROR: Failed to init git submodules" exit 1 } echo "[$(date +"%H:%M:%S")] Downloaded git submodules!" # echo "[$(date +"%H:%M:%S")] Running gradlew classes without daemon..." ./gradlew --no-daemon classes || { echo "[$(date +"%H:%M:%S")] ERROR: Running gradlew build failed! Run './gradlew --no-daemon classes' manually" exit 1 } # cat scripts/ascii.txt 2>/dev/null echo "==========================================================================" echo "" echo "[$(date +"%H:%M:%S")] Build succeeded! All checks passed, you can build normally now!" echo "" echo "=========================================================================="