diff options
Diffstat (limited to 'exit.go')
| -rw-r--r-- | exit.go | 4 | 
1 files changed, 3 insertions, 1 deletions
@@ -2,6 +2,7 @@ package main  import (  	"fmt" +	"path/filepath"  	"go.wit.com/lib/protobuf/gitpb"  	"go.wit.com/log" @@ -21,6 +22,7 @@ func badExit(check *gitpb.Repo, err error) {  			eraseGoMod(check)  		}  	} -	s := fmt.Sprintf("failed: %s", me.forge.Config.ReposDir) +	fullpath := filepath.Join(check.FullPath) +	s := fmt.Sprintf("failed in %s", fullpath)  	me.argv.BadExit(s, err)  }  | 
