Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

#!/usr/bin/env sh | |
CURRENTDIR=$(pwd) | |
# Absolute path to this script, | |
SCRIPT=$(readlink -f "$0") | |
# Absolute path this script is in | |
SCRIPTPATH=$(dirname "$SCRIPT") | |
cd $SCRIPTPATH | |
# Build/Install | |
./gradlew :cli:installDist > /dev/null | |
# Start the shell | |
./cli/build/install/cli/bin/cli | |
cd $CURRENTDIR |