chore: remove redundant logging
This commit is contained in:
parent
a773fd4256
commit
b3a2402cec
@ -60,7 +60,6 @@ func (r Recipe) Ensure(ctx EnsureContext) error {
|
|||||||
// EnsureExists ensures that the recipe is locally cloned
|
// EnsureExists ensures that the recipe is locally cloned
|
||||||
func (r Recipe) EnsureExists() error {
|
func (r Recipe) EnsureExists() error {
|
||||||
if _, err := os.Stat(r.Dir); os.IsNotExist(err) {
|
if _, err := os.Stat(r.Dir); os.IsNotExist(err) {
|
||||||
log.Debugf("%s does not exist, attemmpting to clone", r.Dir)
|
|
||||||
if err := gitPkg.Clone(r.Dir, r.GitURL); err != nil {
|
if err := gitPkg.Clone(r.Dir, r.GitURL); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user