@@ -13,7 +13,7 @@ import (
1313 "github.com/input-output-hk/catalyst-forge/lib/project/injector"
1414 "github.com/input-output-hk/catalyst-forge/lib/project/secrets"
1515 sb "github.com/input-output-hk/catalyst-forge/lib/schema/blueprint"
16- "github.com/input-output-hk/catalyst-forge/lib/tools/earthfile "
16+ "github.com/input-output-hk/catalyst-forge/lib/tools/earthly "
1717 "github.com/input-output-hk/catalyst-forge/lib/tools/fs"
1818 "github.com/input-output-hk/catalyst-forge/lib/tools/fs/billy"
1919 "github.com/input-output-hk/catalyst-forge/lib/tools/git"
@@ -97,15 +97,15 @@ func (p *DefaultProjectLoader) Load(projectPath string) (Project, error) {
9797 return Project {}, fmt .Errorf ("failed to check for Earthfile: %w" , err )
9898 }
9999
100- var ef * earthfile .Earthfile
100+ var ef * earthly .Earthfile
101101 if exists {
102102 p .logger .Info ("Parsing Earthfile" , "path" , efPath )
103103 eff , err := p .fs .Open (efPath )
104104 if err != nil {
105105 p .logger .Error ("Failed to read Earthfile" , "error" , err , "path" , efPath )
106106 return Project {}, fmt .Errorf ("failed to read Earthfile: %w" , err )
107107 }
108- efs , err := earthfile .ParseEarthfile (context .Background (), eff )
108+ efs , err := earthly .ParseEarthfile (context .Background (), eff )
109109 if err != nil {
110110 p .logger .Error ("Failed to parse Earthfile" , "error" , err , "path" , efPath )
111111 return Project {}, fmt .Errorf ("failed to parse Earthfile: %w" , err )
0 commit comments