fix: better local changes message
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2022-04-19 10:29:05 +02:00
parent 3c4bb6a55e
commit cbd924060f
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ func EnsureUpToDate(recipeName string) error {
}
if !isClean {
return fmt.Errorf("%s has locally unstaged changes", recipeName)
return fmt.Errorf("%s (%s) has locally unstaged changes? please commit/remove your changes before proceeding", recipeName, recipeDir)
}
repo, err := git.PlainOpen(recipeDir)