Skip to content

Commit

Permalink
Merge branch 'fixreadme' into 'master'
Browse files Browse the repository at this point in the history
Fix version in README, again

See merge request se2/litterbox!188
  • Loading branch information
gofraser committed Sep 22, 2020
2 parents 76fc82b + 7ece915 commit 3ff005e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ produce an executable jar-file, run the following command:
mvn package
```

This will produce `target/Litterbox-1.1.jar`
This will produce `target/Litterbox-1.2.jar`


## Using LitterBox

To see an overview of the command line options available in LitterBox type:

```
java -jar Litterbox-1.1.jar --help
java -jar Litterbox-1.2.jar --help
```

### Basic usage
Expand All @@ -46,7 +46,7 @@ LitterBox parses the JSON file of a Scratch project, which contains
its source code. Given such a JSON file, LitterBox is invoked as follows:

```
java -jar Litterbox-1.1.jar --check --path <path/to/project.json>
java -jar Litterbox-1.2.jar --check --path <path/to/project.json>
```

As a result, LitterBox will report any occurrences of bug patterns or
Expand All @@ -59,7 +59,7 @@ If you want to check a specific project given its ID (which you can
find in the URL of the project), you can use the following command:

```
java -jar Litterbox-1.1.jar --check --projectid <projectid> --path <path/to/store/downloaded/project>
java -jar Litterbox-1.2.jar --check --projectid <projectid> --path <path/to/store/downloaded/project>
```

When invoked this way, LitterBox will retrieve the JSON file
Expand Down

0 comments on commit 3ff005e

Please sign in to comment.