()
| 403 | } |
| 404 | |
| 405 | func getTestUtilGoFilePath() (string, error) { |
| 406 | _, filename, _, ok := runtime.Caller(1) |
| 407 | if !ok { |
| 408 | return "", errors.Errorf("failed to testutil package location") |
| 409 | } |
| 410 | return filename, nil |
| 411 | } |
| 412 | |
| 413 | // Tag initializes tags the git repository |
| 414 | func (g *TestGitRepo) Tag(tagName string) error { |