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 <denniskempin@google.com>
Commit-Queue: Elie Kheirallah <khei@google.com>
Commit-Queue: Dennis Kempin <denniskempin@google.com>
Auto-Submit: Elie Kheirallah <khei@google.com>
This commit is contained in:
Elie Kheirallah 2023-07-12 19:52:01 +00:00 committed by crosvm LUCI
parent ece63aeba0
commit ff80c3f9c8

View file

@ -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