Skip to content

Commit

Permalink
Fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Redande committed May 4, 2020
1 parent 0b78b47 commit f832df0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ Supported tasks and their return types and parameters can be read from [TaskExec
### CLI

Running tasks from the command-line can be accomplished by passing the required task with projects directory path and in some tasks the output file path.
After building the `tmc-langs-cli` commandline interface you can find the jar to use under `tmc-langs-cli/target/`
After building the `tmc-langs-cli` commandline interface you can find the jar to use under `target/`

`java -jar tmc-langs-cli/target/tmc-langs-cli-1.0-SNAPSHOT.jar run-tests --exercisePath test_projects/arith_funcs --outputPath results.txt`
`java -jar target/tmc-langs-cli-1.0-SNAPSHOT.jar run-tests --exercisePath test_projects/arith_funcs --outputPath results.txt`

For all options run
`java -jar tmc-langs-cli/target/tmc-langs-cli-1.0-SNAPSHOT.jar help`
`java -jar target/tmc-langs-cli-1.0-SNAPSHOT.jar help`

## Credits

Expand Down
6 changes: 3 additions & 3 deletions clitest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

mvn clean package -Dmaven.test.skip=true

java -jar tmc-langs-cli/target/tmc-langs-cli-*-SNAPSHOT.jar scan-exercise --exercisePath tmc-langs-java/src/test/resources/maven_exercise --outputPath a
java -jar target/tmc-langs-cli-*-SNAPSHOT.jar scan-exercise --exercisePath tmc-langs-java/src/test/resources/maven_exercise --outputPath a
cat a

java -jar tmc-langs-cli/target/tmc-langs-cli-*-SNAPSHOT.jar prepare-stubs --exercisePath tmc-langs-java/src/test/resources/ant_arith_funcs/ --outputPath arithfuncs-proj
java -jar tmc-langs-cli/target/tmc-langs-cli-*-SNAPSHOT.jar checkstyle --exercisePath tmc-langs-cli/src/test/resources/arith_funcs --locale=en --outputPath tmp
java -jar target/tmc-langs-cli-*-SNAPSHOT.jar prepare-stubs --exercisePath tmc-langs-java/src/test/resources/ant_arith_funcs/ --outputPath arithfuncs-proj
java -jar target/tmc-langs-cli-*-SNAPSHOT.jar checkstyle --exercisePath tmc-langs-cli/src/test/resources/arith_funcs --locale=en --outputPath tmp
cat tmp

0 comments on commit f832df0

Please sign in to comment.