Skip to content

Commit

Permalink
consistent naming
Browse files Browse the repository at this point in the history
  • Loading branch information
femnad committed Dec 13, 2023
1 parent ccb6a42 commit 2df4c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions provision/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ func NewProvisioner(cfg base.Config, filter []string) (Provisioner, error) {
{"rm-package", p.removePackages},
{"known-hosts", p.acceptHostKeys},
{"github-key", p.githubUserKey},
{"cargo", p.cargoInstall},
{"go", p.goInstall},
{"python", p.pythonInstall},
{"rust", p.rustInstall},
{"task", p.runTasks},
{"template", p.applyTemplates},
{"service", p.initServices},
Expand Down Expand Up @@ -150,7 +150,7 @@ func (p Provisioner) removePackages() error {
return nil
}

func (p Provisioner) cargoInstall() error {
func (p Provisioner) rustInstall() error {
internal.Log.Noticef("Installing Rust packages")

return cargoInstallPkgs(p.Config)
Expand Down

0 comments on commit 2df4c5b

Please sign in to comment.