Skip to content

Commit

Permalink
Improve some error messages
Browse files Browse the repository at this point in the history
Rework the error handling to show where an error
occured during the run.

Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
  • Loading branch information
obbardc committed Mar 9, 2022
1 parent 7e5e652 commit 6687aa2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cmd/debos/debos.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func main() {
// attempt to create a fakemachine
m, err = fakemachine.NewMachineWithBackend(options.Backend)
if err != nil {
log.Printf("error creating fakemachine: %v", err)
log.Printf("Couldn't create fakemachine: %v", err)

/* fallback to running on the host unless the user has chosen
* a specific backend */
Expand Down Expand Up @@ -318,11 +318,12 @@ func main() {

exitcode, err := m.RunInMachineWithArgs(args)
if err != nil {
fmt.Println(err)
fmt.Printf("Couldn't start fakemachine: %v\n", err)
context.State = debos.Failed
return
}
if exitcode != 0 {
fmt.Printf("fakemachine failed with non-zero exitcode: %d\n", exitcode)
context.State = debos.Failed
return
}
Expand Down Expand Up @@ -354,6 +355,7 @@ func main() {
if _, err = os.Stat(context.Rootdir); os.IsNotExist(err) {
err = os.Mkdir(context.Rootdir, 0755)
if err != nil && os.IsNotExist(err) {
fmt.Printf("Could not create rootdir: %v\n", err)
context.State = debos.Failed
return
}
Expand Down

0 comments on commit 6687aa2

Please sign in to comment.