forked from status-im/status-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradlew
executable file
·25 lines (21 loc) · 833 Bytes
/
gradlew
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env sh
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
##
## The default gradle wrapper script was replaced by a call to Nix's gradle package.
## Please revert to this script any time that it is upgraded by React Native.
##
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
# Map mavenLocal() to the Nix maven repo we set up in nix/mobile/android/maven-and-npm-deps/default.nix
if [ -n "${STATUS_NIX_MAVEN_REPO}" ]; then
repoOpts="-Dmaven.repo.local=${STATUS_NIX_MAVEN_REPO}"
else
repoOpts=''
fi
exec gradle $repoOpts "$@"