From ff80c3f9c82403b467b4075b8d0d9e4ee0168a47 Mon Sep 17 00:00:00 2001 From: Elie Kheirallah Date: Wed, 12 Jul 2023 19:52:01 +0000 Subject: [PATCH] tools: example_simple: fix command for installing packages Fixing small typo in command to install multiple packages. A comma is required, and not a space. BUG=N/A TEST=mdbook build Change-Id: I8a7032b3e767d1dc072cf593131f5cbddaf57ff8 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4680286 Reviewed-by: Dennis Kempin Commit-Queue: Elie Kheirallah Commit-Queue: Dennis Kempin Auto-Submit: Elie Kheirallah --- tools/examples/example_simple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/examples/example_simple b/tools/examples/example_simple index 1e172f3685..9852d232d6 100755 --- a/tools/examples/example_simple +++ b/tools/examples/example_simple @@ -18,7 +18,7 @@ if ! [ -f rootfs ]; then -o ./rootfs # Packages can be pre-installed to the image using # --install PACKAGE_NAME - # Ex: virt-builder ubuntu-20.04 ... --install openssh-server ncat + # Ex: virt-builder ubuntu-20.04 ... --install openssh-server,ncat # In this example, the ubuntu image will come pre-installed with OpenSSH-server and with Ncat. # ANCHOR_END: build