Skip to content

Commit a44f647

Browse files
Updated readme and CLI version
1 parent d282d8e commit a44f647

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,17 @@ Based off of the feistel cipher structure, the block size of the algorithm is 12
1212

1313
You can compile the binary manually using the `go build` command or you can compile via the build system using the `make` tool.
1414

15+
### Via Go Install
16+
To install locally via `go install`. Run the command below:
17+
18+
```shell
19+
go install github.com/the-code-genin/ges-cli/cmd/ges@latest
20+
ges --version
21+
```
22+
1523
### Via Go Build
1624

17-
To compile via `go build`, you will require the `go 1.22` binary installed. Then follow the steps below:
25+
To compile via `go build`, you will require at least `go 1.22` installed. Then follow the steps below:
1826

1927
- Run `cd cmd/ges` to change your terminal path
2028
- Run `go build .` to generate a build of the `ges cli` for your operating system architecture

cmd/ges/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func init() {
1919
encryptionCommand,
2020
decryptionCommand,
2121
},
22-
Version: "2.0.0",
22+
Version: "0.1.0",
2323
}
2424
}
2525

0 commit comments

Comments
 (0)