From 4d66945573cb614ee3731840c3af1b6fc3b445d4 Mon Sep 17 00:00:00 2001 From: Kris Alder Date: Wed, 22 Jun 2022 15:32:36 -0700 Subject: pkg/build: fix typo for android/cuttlefish build The command to fetch a Cuttlefish emulator binary is 'fetch_cvd', with and underscore. --- pkg/build/android.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg') diff --git a/pkg/build/android.go b/pkg/build/android.go index cc4e041da..5f5472724 100644 --- a/pkg/build/android.go +++ b/pkg/build/android.go @@ -96,7 +96,7 @@ func (a android) build(params Params) (ImageDetails, error) { if err := embedFiles(params, func(mountDir string) error { homeDir := filepath.Join(mountDir, "root") - if _, err := osutil.RunCmd(time.Hour, homeDir, "./fetchcvd"); err != nil { + if _, err := osutil.RunCmd(time.Hour, homeDir, "./fetch_cvd"); err != nil { return err } -- cgit mrf-deployment