Skip to content

Commit d3f1ecc

Browse files
committed
Fix install path
1 parent f0e40d0 commit d3f1ecc

4 files changed

Lines changed: 3 additions & 13 deletions

File tree

.codebeatsettings

Lines changed: 0 additions & 9 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<p align="center">
44
<a href="https://kaos.sh/w/sslcli/ci"><img src="https://kaos.sh/w/sslcli/ci.svg" alt="GitHub Actions CI Status" /></a>
55
<a href="https://kaos.sh/r/sslcli"><img src="https://kaos.sh/r/sslcli.svg" alt="GoReportCard" /></a>
6-
<a href="https://kaos.sh/b/sslcli"><img src="https://kaos.sh/b/edc52bb1-c807-470b-8466-b86cc0cfcdbe.svg" alt="codebeat badge" /></a>
76
<a href="https://kaos.sh/w/sslcli/codeql"><img src="https://kaos.sh/w/sslcli/codeql.svg" alt="GitHub Actions CodeQL Status" /></a>
87
<a href="#license"><img src=".github/images/license.svg"/></a>
98
</p>
@@ -28,7 +27,7 @@
2827
To build the SSLScan Client from scratch, make sure you have a working Go 1.21+ workspace ([instructions](https://go.dev/doc/install)), then:
2928

3029
```
31-
go install github.com/essentialkaos/sslcli@latest
30+
go install github.com/essentialkaos/sslcli/v3@latest
3231
```
3332

3433
#### From [ESSENTIAL KAOS Public Repository](https://kaos.sh/kaos-repo)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/essentialkaos/sslcli
1+
module github.com/essentialkaos/sslcli/v3
22

33
go 1.19
44

sslcli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package main
1010
import (
1111
_ "embed"
1212

13-
CLI "github.com/essentialkaos/sslcli/cli"
13+
CLI "github.com/essentialkaos/sslcli/v3/cli"
1414
)
1515

1616
// ////////////////////////////////////////////////////////////////////////////////// //

0 commit comments

Comments
 (0)