Skip to content

Commit

Permalink
Fix typo of word "dependencies" in gradle build files (#259)
Browse files Browse the repository at this point in the history
* Fix typo of word "dependencies" in gradle build files
  • Loading branch information
CydeWeys committed Sep 5, 2019
1 parent 1e0be18 commit 859b700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def createGetBuildSrcDirectDepsTask(outputFileName) {
"getBuildSrcDeps_${java.util.UUID.randomUUID()}".toString(),
Exec) {
workingDir "${rootDir}/buildSrc"
commandLine '../gradlew', 'exportDenpendencies',
commandLine '../gradlew', 'exportDependencies',
"-PdependencyExportFile=${outputFileName}"
}
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ gradle.projectsEvaluated {
}
}

task exportDenpendencies {
task exportDependencies {
def outputFileProperty = 'dependencyExportFile'
def output = project.hasProperty(outputFileProperty)
? new PrintStream(
Expand Down

0 comments on commit 859b700

Please sign in to comment.