mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-26 08:53:05 +00:00
Fix linting error:
This commit is contained in:
parent
96b4d2f391
commit
57c115e60a
1 changed files with 4 additions and 1 deletions
|
@ -116,7 +116,10 @@ var DeleteCmd = &cobra.Command{
|
|||
prompt := &survey.Confirm{
|
||||
Message: fmt.Sprintf("Do you want to remove the node %s?", m.Name),
|
||||
}
|
||||
survey.AskOne(prompt, &confirm)
|
||||
err = survey.AskOne(prompt, &confirm)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
if confirm {
|
||||
err = h.DeleteMachine(m)
|
||||
|
|
Loading…
Reference in a new issue