Skip to content

Instantly share code, notes, and snippets.

@zhcnxf
Created August 15, 2016 02:55
Show Gist options
  • Save zhcnxf/55a8581802d67838db2bdf2d442ac0bf to your computer and use it in GitHub Desktop.
Save zhcnxf/55a8581802d67838db2bdf2d442ac0bf to your computer and use it in GitHub Desktop.
Gradle wrapper finder
#! /usr/bin/env bash
PWD=$(pwd)
while [[ ! -f $PWD/gradlew && ! $PWD == '/' ]]; do
PWD=$(dirname $PWD)
done
if [ -f $PWD/gradlew ]; then
echo Using $PWD/gradlew
bash $PWD/gradlew $@
else
echo Cannot find a usable gradlew file
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment