mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
Abort if editor does not return 0
This allows the user to abort the install by telling the editor to exit with a non zero status. e.g. `:cq` in vim. This should also catch errors if the editor does actually fail or if the configured editor does not exist.
This commit is contained in:
parent
238d3a0b6c
commit
695927c4cd
1 changed files with 4 additions and 1 deletions
|
@ -307,7 +307,10 @@ func askEditPkgBuilds(pkgs []*rpc.Pkg, bases map[string][]*rpc.Pkg) error {
|
|||
if !continueTask(str, "yY") {
|
||||
editcmd := exec.Command(editor(), dir+"PKGBUILD")
|
||||
editcmd.Stdin, editcmd.Stdout, editcmd.Stderr = os.Stdin, os.Stdout, os.Stderr
|
||||
editcmd.Run()
|
||||
err := editcmd.Run()
|
||||
if err != nil {
|
||||
return fmt.Errorf("Editor did not exit successfully, Abotring: %s", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue