1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00

improved error msg

This commit is contained in:
Carlos Alexandro Becker 2017-01-21 19:13:07 -02:00
parent 6575400577
commit 956464bc67
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -11,7 +11,7 @@ import (
)
// ErrDirty happens when the repo has uncommitted/unstashed changes
var ErrDirty = errors.New("git is currently in a dirty state")
var ErrDirty = errors.New("git is currently in a dirty state, commit or stash your changes to continue")
var ErrWrongRef = errors.New("current tag ref is different from HEAD ref")