Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit d48fd6c

Browse files
committed
fix #1
1 parent c828a74 commit d48fd6c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ Fuzzit CLI can be used either locally or from your CI.
2828

2929
Run `fuzzit --help` to get a full list of commands or checkout our [docs](https://docs.fuzzit.dev).
3030

31+
## Contribution
32+
33+
Contributions are welcome. If you need additional feature either open a github issue or a PR
34+
if you like to contribute it. Before contributing a big feature please open an issue so we can discuss and
35+
approve before a lot of code is written. For bugfixes also open an issue or PR.
36+
37+
3138
## Versioning
3239

3340
Fuzzit CLI Version contains three components x.y.z . an increase in `z` ensures backward comparability while increase

cmd/fuzzit/commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func copy(src, dst string) (int64, error) {
8282

8383
func loadFromFile(configFile string) (*FuzzitCli, error) {
8484
if _, err := os.Stat(configFile); os.IsNotExist(err) {
85-
return nil, fmt.Errorf("please run fuzzit auth <api_key> <org_id>")
85+
return nil, fmt.Errorf("please run fuzzit auth <api_key>")
8686
}
8787

8888
file, err := os.Open(configFile)

cmd/fuzzit/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func main() {
4949
app.EnableBashCompletion = true
5050
app.Name = "Fuzzit"
5151
app.Usage = "Continuous fuzzing made simple"
52-
app.Version = "1.2.4"
52+
app.Version = "1.2.5"
5353
app.Compiled = time.Now()
5454
app.Authors = []cli.Author{
5555
cli.Author{

0 commit comments

Comments
 (0)