aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorKris Alder <kalder@google.com>2022-06-22 15:32:36 -0700
committerAleksandr Nogikh <wp32pw@gmail.com>2022-06-24 12:52:30 +0200
commit4d66945573cb614ee3731840c3af1b6fc3b445d4 (patch)
tree2511afbc615586ef921e39399f7609c89fce4fa7 /pkg
parenta5dbd430e216c19b40593c047b622c3a8149a41d (diff)
pkg/build: fix typo for android/cuttlefish build
The command to fetch a Cuttlefish emulator binary is 'fetch_cvd', with and underscore.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/build/android.go2
1 files changed, 1 insertions, 1 deletions
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
}