forked from toolshed/abra
		
	fix: handle noinput case
This commit is contained in:
		| @ -105,17 +105,19 @@ You may also invoke this command in "wizard" mode and be prompted for input | ||||
|  | ||||
| 		table.Render() | ||||
|  | ||||
| 		response := false | ||||
| 		prompt := &survey.Confirm{ | ||||
| 			Message: "continue with record deletion?", | ||||
| 		} | ||||
| 		if !internal.NoInput { | ||||
| 			response := false | ||||
| 			prompt := &survey.Confirm{ | ||||
| 				Message: "continue with record deletion?", | ||||
| 			} | ||||
|  | ||||
| 		if err := survey.AskOne(prompt, &response); err != nil { | ||||
| 			return err | ||||
| 		} | ||||
| 			if err := survey.AskOne(prompt, &response); err != nil { | ||||
| 				return err | ||||
| 			} | ||||
|  | ||||
| 		if !response { | ||||
| 			logrus.Fatal("exiting as requested") | ||||
| 			if !response { | ||||
| 				logrus.Fatal("exiting as requested") | ||||
| 			} | ||||
| 		} | ||||
|  | ||||
| 		_, err = provider.DeleteRecords(c.Context, zone, []libdns.Record{toDelete}) | ||||
|  | ||||
		Reference in New Issue
	
	Block a user