Aurimas Liutikas | aa460b0 | 2019-04-25 16:03:21 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | ############################################################################## |
| 4 | ## |
Louis Pullen-Freilich | 3967d9f | 2019-05-10 13:42:30 +0100 | [diff] [blame] | 5 | ## Compose specific Gradle start up script for UN*X |
Aurimas Liutikas | aa460b0 | 2019-04-25 16:03:21 -0700 | [diff] [blame] | 6 | ## |
| 7 | ############################################################################## |
| 8 | |
Louis Pullen-Freilich | 1dff678 | 2019-10-17 18:12:39 +0100 | [diff] [blame] | 9 | export DIST_SUBDIR="/ui" |
Aurimas Liutikas | aa460b0 | 2019-04-25 16:03:21 -0700 | [diff] [blame] | 10 | |
Leland Richardson | 50c3c6e | 2019-08-19 13:53:41 -0700 | [diff] [blame] | 11 | # Relative path to the directory containing this script, from the current directory |
| 12 | relativeScriptPath="`dirname \"$0\"`/" |
Louis Pullen-Freilich | 97199f8 | 2019-05-08 15:24:37 +0100 | [diff] [blame] | 13 | |
Leland Richardson | 50c3c6e | 2019-08-19 13:53:41 -0700 | [diff] [blame] | 14 | # Use main gradle wrapper from AndroidX |
Jim Sproch | 3653cbb | 2019-10-16 16:23:46 -0700 | [diff] [blame] | 15 | exec "$relativeScriptPath"../gradlew "$@" |