summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Madden <git@rockymadden.com>2014-01-02 16:25:34 -0700
committerRocky Madden <git@rockymadden.com>2014-01-02 16:25:34 -0700
commit3e25a30e6d6025484a616e1b5e47ac834c17f686 (patch)
treee046f4286e160d3afeb86bd14efd66b1a1023ece
parent15e06ee3af2d0001746a33e2ab37d9c48d163f93 (diff)
downloadstringmetric-3e25a30e6d6025484a616e1b5e47ac834c17f686.tar.gz
stringmetric-3e25a30e6d6025484a616e1b5e47ac834c17f686.tar.bz2
stringmetric-3e25a30e6d6025484a616e1b5e47ac834c17f686.zip
Updated documentation on how to build CLI.
-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
```
---