Debug installing android sdk tools

This commit is contained in:
Dave Olsthoorn
2020-07-25 18:34:51 +02:00
parent 64495f005b
commit 90244e0383
4 changed files with 7 additions and 4 deletions

View File

@@ -16,13 +16,13 @@ export const HOME = os.homedir()
export const GRADLE_CACHE_GLOB = [
'**/*.gradle',
'**.gradle',
'gradle.properties'
'**/gradle.properties'
]
export const GRADLE_CACHE_DIR = path.join(HOME, '.gradle', 'cache')
export const GRADLE_CACHE_KEY = 'GRADLE_CACHE_KEY'
// For caching the gradle wrapper in ~/.gradle/wrapper
export const GRADLE_WRAPPER_GLOB = ['gradle/wrapper/**', 'gradlew*']
export const GRADLE_WRAPPER_GLOB = ['**/gradle/wrapper/**', '**/gradlew*']
export const GRADLE_WRAPPER_DIR = path.join(HOME, '.gradle', 'wrapper')
export const GRADLE_WRAPPER_KEY = 'GRADLE_WRAPPER_KEY'