Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildkitd/buildkitd.go
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ func getGCPolicySize(workerInfo *client.WorkerInfo) (int64, bool) {
return 0, false
}

// getCacheSize returns the size of the earthly cache in bytes.
// getCacheSize returns the size of the earthbuild cache in bytes.
func getCacheSize(ctx context.Context, volumeName string, fe containerutil.ContainerFrontend) (int, error) {
infos, err := fe.VolumeInfo(ctx, volumeName)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion earthfile2llb/earthfile2llb.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ type ConvertOpt struct {
// elevated privileges
AllowPrivileged bool
// ForceSaveImage is used to force all SAVE IMAGE commands are executed regardless of if they are for a local or
// remote target; this is to support the legacy behaviour that was first introduced in earthly (up to 0.5)
// remote target; this is to support the legacy behaviour that was first introduced in earthbuild (up to 0.5)
// When this is set to false, SAVE IMAGE commands are only executed when DoSaves is true.
ForceSaveImage bool
// HasDangling represents whether the target has dangling instructions -
Expand Down
2 changes: 1 addition & 1 deletion earthfile2llb/interpreter.go
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ func (i *Interpreter) handleCopy(ctx context.Context, cmd earthfile.Command) err
}

if dest == "" || dest == "." || len(srcs) > 1 {
// TODO needs to be the containers platform, not the earthly hosts platform. For now, this is always Linux.
// TODO needs to be the containers platform, not the earthbuild hosts platform. For now, this is always Linux.
dest += string("/")
}

Expand Down
2 changes: 1 addition & 1 deletion features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func Get(version *earthfile.Version) (*Features, bool, error) {

hasVersion := (version != nil)
if !hasVersion {
// If no version is specified, we default to 0.5 (the Earthly version
// If no version is specified, we default to 0.5 (the Earthbuild version
// before the VERSION command was introduced).
version = &earthfile.Version{
Args: []string{"0.5"},
Expand Down
2 changes: 1 addition & 1 deletion inputgraph/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func TestParseProjectCommand(t *testing.T) {

// TODO(jhorsts): Do we have any plans for this command?
// The PROJECT command is redundant, and I removed it from the file.
// It was useful with the Earthly Cloud.
// It was useful with the Earthbuild Cloud.
t.Skip()

r := require.New(t)
Expand Down
2 changes: 1 addition & 1 deletion util/cliutil/earthlydir.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func IsBootstrapped(installName string) bool {
return exists
}

// EnsurePermissions changes the permissions of all earthly files to be owned by the user and their group.
// EnsurePermissions changes the permissions of all earthbuild files to be owned by the user and their group.
func EnsurePermissions(installName string) error {
earthDir, sudoUser := getEarthDirAndUser(installName)
if sudoUser != nil {
Expand Down
Loading