From eff6fd3d7481248c631b7763e30642f64f072877 Mon Sep 17 00:00:00 2001 From: Gabriel Kopper <41166074+gckopper@users.noreply.github.com> Date: Mon, 9 Jun 2025 00:47:28 -0300 Subject: [PATCH] chore: fix typo in script in the getting started guide Fix misspelled "squashfs" inside the getting started guide that caused the file names to be weird. Signed-off-by: Gabriel Kopper <41166074+gckopper@users.noreply.github.com> --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 04077292946..f0b02c6e1b5 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -113,7 +113,7 @@ wget "https://s3.amazonaws.com/spec.ccfc.min/${latest_kernel_key}" latest_ubuntu_key=$(curl "http://spec.ccfc.min.s3.amazonaws.com/?prefix=firecracker-ci/$CI_VERSION/$ARCH/ubuntu-&list-type=2" \ | grep -oP "(?<=)(firecracker-ci/$CI_VERSION/$ARCH/ubuntu-[0-9]+\.[0-9]+\.squashfs)(?=)" \ | sort -V | tail -1) -ubuntu_version=$(basename $latest_ubuntu_key .sqashfs | grep -oE '[0-9]+\.[0-9]+') +ubuntu_version=$(basename $latest_ubuntu_key .squashfs | grep -oE '[0-9]+\.[0-9]+') # Download a rootfs wget -O ubuntu-$ubuntu_version.squashfs.upstream "https://s3.amazonaws.com/spec.ccfc.min/$latest_ubuntu_key"