diff options
author | Nick Gerace <39320683+nickgerace@users.noreply.github.com> | 2020-04-27 01:01:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 01:01:53 -0400 |
commit | fae99099315c57ee9eb0f7acedeb5011d045dbaa (patch) | |
tree | 2854e817cb6adec849ac516c65f20f641cfb3615 | |
parent | deb204128e873cf462ed308051730c4a8a1abb89 (diff) | |
download | gfold-fae99099315c57ee9eb0f7acedeb5011d045dbaa.zip |
Fix gfold verison (0.1.1) and add update installation instructions (#7)
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,10 +1,10 @@ [package]
name = "gfold"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Nick Gerace <nickagerace@gmail.com>"]
edition = "2018"
[dependencies]
clap = { git = "https://github.com/clap-rs/clap/" }
colored = "1.9"
-git2 = "0.13"
\ No newline at end of file +git2 = "0.13"
@@ -31,10 +31,10 @@ One more thing: doing one or few things well includes not only the usual Linux/m ## Installation
-While there are no release builds at the moment, you can build ```gfold``` by executing the following.
+While there are no release builds at the moment, you can build and install ```gfold``` by executing the following.
```bash
-cargo build --release
+cargo install --git https://github.com/nickgerace/gfold
```
## Usage
|