aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/gitlab
diff options
context:
space:
mode:
authorRemi Rampin <remi@rampin.org>2021-10-08 22:25:05 -0400
committerRemi Rampin <remi@rampin.org>2021-10-13 15:07:03 -0400
commit882579b129c5131c30dc2425b24d798f1227e86c (patch)
tree46e7ddd0319a3d62f6cc3d393bdd5946143f4e28 /bridge/gitlab
parentf50aea486bdb873d12b900dc767940c6bf34d7b8 (diff)
downloadgit-bug-882579b129c5131c30dc2425b24d798f1227e86c.tar.gz
Update URL of GitLab access token settings
Diffstat (limited to 'bridge/gitlab')
-rw-r--r--bridge/gitlab/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/gitlab/config.go b/bridge/gitlab/config.go
index a8c3e673..4a714d09 100644
--- a/bridge/gitlab/config.go
+++ b/bridge/gitlab/config.go
@@ -194,7 +194,7 @@ func promptTokenOptions(repo repository.RepoKeyring, login, baseUrl string) (aut
}
func promptToken(baseUrl string) (*auth.Token, error) {
- fmt.Printf("You can generate a new token by visiting %s.\n", strings.TrimSuffix(baseUrl, "/")+"/profile/personal_access_tokens")
+ fmt.Printf("You can generate a new token by visiting %s.\n", strings.TrimSuffix(baseUrl, "/")+"/-/profile/personal_access_tokens")
fmt.Println("Choose 'Create personal access token' and set the necessary access scope for your repository.")
fmt.Println()
fmt.Println("'api' access scope: to be able to make api calls")