summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xreadme.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index b34992b..2df553f 100755
--- a/readme.md
+++ b/readme.md
@@ -308,18 +308,16 @@ StringMetric.compareWithJaroWinkler("abc123", "abc456")
## Building the CLIs
```shell
$ git clone https://github.com/rockymadden/stringmetric.git
-$ cd stringmetric
-$ gradle :stringmetric-cli:tar
+$ cd stringmetric/project
+$ ./build.sh
```
-Running the ```tar``` task will create a compressed archive and an unarchived copy of the built algorithms and metrics. The files can be found under the ```build``` directory that Gradle creates. The archive is named ```stringmetric-cli.tar.gz``` and the unarchived files can be found in the directory named ```stringmetric-cli```. You may need to chmod the files because of the inability for Gradle to do so reliably
-
---
To run a command from the current directory that you would be in from doing the above:
```shell
-$ ./cli/build/stringmetric-cli/jarometric abc xyz
+$ ../target/cli/jarometric abc xyz
```
---