Skip to content

Commit 24b6744

Browse files
author
Scott Dennison
committed
[PR-4815] Correct build.gradle typo, and hopefully fix failing appveyor build.
1 parent 81630d7 commit 24b6744

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ platform: Any CPU
3737
# cache the nuget packages unless something changed there
3838
cache:
3939
- packages/ -> **/packages.config
40-
- %USERPROFILE%/.gradle/wrapper/dists
40+
- '%USERPROFILE%/.gradle/wrapper/dists'
4141

4242
install:
4343
set PATH=C:\Program Files (x86)\MSBuild\15.0\Bin;C:\Program Files (x86)\Java\jdk1.8.0;%PATH%

development/java/Rubberduck.Parsing/Grammar/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ dependencies {
2323
compile group: 'org.antlr', name: 'antlr4-runtime', version: '4.7.2'
2424
}
2525

26-
def grammerCodeGenDest = "${projectDir}/src/main/gen"
26+
def grammarCodeGenDest = "${projectDir}/src/main/gen"
2727
def grammarSource = "${projectDir}/../../../../Rubberduck.Parsing/Grammar/"
2828
def grammarDest = "${projectDir}/src/main/antlr/com/rubberduckvba/rubberduck/parsing/grammar"
2929

3030
sourceSets {
3131
main {
3232
java {
33-
srcDir "${grammerCodeGenDest}"
33+
srcDir "${grammarCodeGenDest}"
3434
}
3535
}
3636
}
@@ -45,7 +45,7 @@ task copyGrammarFiles(type: Copy) {
4545
task generateGrammarSources(type: JavaExec) {
4646
main 'org.antlr.v4.Tool'
4747
classpath = buildscript.configurations.classpath
48-
args "-o", "${grammerCodeGenDest}", "-visitor", "-package", "com.rubberduckvba.rubberduck.parsing.grammar", "${grammarDest}/VBALexer.g4", "${grammarDest}/VBAParser.g4"
48+
args "-o", "${grammarCodeGenDest}", "-visitor", "-package", "com.rubberduckvba.rubberduck.parsing.grammar", "${grammarDest}/VBALexer.g4", "${grammarDest}/VBAParser.g4"
4949
}
5050

5151
generateGrammarSources.dependsOn copyGrammarFiles

0 commit comments

Comments
 (0)