10 lines
148 B
Text
10 lines
148 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Source this script in ci
|
||
|
GRADLE_USER_HOME="$(pwd)/.gradle"
|
||
|
export GRADLE_USER_HOME
|
||
|
|
||
|
if [ -f devenv.local ]; then
|
||
|
. devenv.local
|
||
|
fi
|