checking for err being null before printing 403 message

This commit is contained in:
Andreas Baumann 2018-06-05 18:22:20 +02:00
Родитель 12bf1c29c5
Коммит 8b5fa4ac2e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -97,7 +97,7 @@ func delete(command *Command, args *Args) {
}
err = gh.DeleteRepository(project)
if strings.Contains(err.Error(), "HTTP 403") {
if err != nil && strings.Contains(err.Error(), "HTTP 403") {
fmt.Println("Please edit the token used for hub at https://github.com/settings/tokens\nand verify that the `delete_repo` scope is enabled.\n")
}
utils.Check(err)