Skip to content

Commit e9a0329

Browse files
Fix file path causing build task to fail
1 parent afbfeb9 commit e9a0329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
steps:
22
- task: Gradle@2
33
inputs:
4-
gradleWrapperFile: '$(Agent.BuildDirectory)/gradlew'
4+
gradleWrapperFile: '$(Build.SourcesDirectory)/gradlew'
55
tasks: 'build'
66
publishJUnitResults: true
77
testResultsFiles: '**/TEST-*.xml'
88
javaHomeOption: 'JDKVersion'
9-
sonarQubeRunAnalysis: false
9+
sonarQubeRunAnalysis: false

0 commit comments

Comments
 (0)