Skip to content

Instantly share code, notes, and snippets.

@dobe
Created December 5, 2018 23:11
Show Gist options
  • Save dobe/6b67159bbebce2b179e4698d75e6cd21 to your computer and use it in GitHub Desktop.
Save dobe/6b67159bbebce2b179e4698d75e6cd21 to your computer and use it in GitHub Desktop.
Gradle Wrapper Caller
#!/usr/bin/env bash
set -e
while [ ! -f gradlew ]
do
cd ..
test $(pwd) = "/" && echo "gradlew not found in current path" && exit 1
done
exec ./gradlew $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment