Skip to content

Commit 83ce644

Browse files
committed
rename repo
1 parent df93972 commit 83ce644

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ brews:
4646
email: adeboyed93@gmail.com
4747

4848
scoop:
49-
url_template: "https://github.com/GitsecureHQ/gitsecure-cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
49+
url_template: "https://github.com/GitsecureHQ/gitsecure/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
5050
bucket:
5151
owner: GitsecureHQ
5252
name: scoop-gitsecure

bin/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Gitsecure CLI is a cutting-edge SecretOps infrastructure designed for developers
44

55
## Useful links
66

7-
- [Github repository](git@github.com:GitsecureHQ/gitsecure-cli.git)
7+
- [Github repository](git@github.com:GitsecureHQ/gitsecure.git)
88
- [Project documentation](https://mirage-collarbone-cf7.notion.site/GitSecure-Model-Structure-c610f335aa07401db311ff44fe4a8758)
99

1010
## Requirements
@@ -27,11 +27,11 @@ To run the CLI, follow the steps below:
2727

2828
To contribute to Gitsecure CLI, please follow these steps:
2929

30-
1. Pick an issue from the [GitHub repository](https://github.com/GitsecureHQ/gitsecure-cli).
30+
1. Pick an issue from the [GitHub repository](https://github.com/GitsecureHQ/gitsecure).
3131
2. Clone the repository using the following command:
3232

3333
```sh
34-
$ git clone https://github.com/GitsecureHQ/gitsecure-cli
34+
$ git clone https://github.com/GitsecureHQ/gitsecure
3535
```
3636

3737
3. When creating a new branch, use the following naming convention: `GSC-<issue-no>-<short-description>`, for example, `GSC-1-project-setup`. The main branch should be based on `develop`.
@@ -53,7 +53,7 @@ $ git push
5353
# Scoop For Windows
5454
5555
$ scoop bucket add gitsecurehq https://github.com/GitsecureHQ/scoop-gitsecure
56-
$ scoop install gitsecure-cli
56+
$ scoop install gitsecure
5757
$ gitsecure --version
5858
5959
# Brew For Mac And Linux Users

pkg/utils/check-for-update.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func CheckForUpdate() {
17-
latestVersion, err := getLatestTag("GitsecureHQ", "gitsecure-cli")
17+
latestVersion, err := getLatestTag("GitsecureHQ", "gitsecure")
1818
if err != nil {
1919
log.Printf("Failed to check for updates: %v", err) // Use log.Printf for logging
2020
// do nothing and continue
@@ -76,9 +76,9 @@ func GetUpdateInstructions() string {
7676
os := runtime.GOOS
7777
switch os {
7878
case "darwin":
79-
return "To update, run: brew update && brew upgrade gitsecure-cli"
79+
return "To update, run: brew update && brew upgrade gitsecure"
8080
case "windows":
81-
return "To update, run: scoop update && scoop update gitsecure-cli"
81+
return "To update, run: scoop update && scoop update gitsecure"
8282
default:
8383
return ""
8484
}

0 commit comments

Comments
 (0)