From 5f801e6683481f32c82c483f60bf8d3bf2097088 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 18 Mar 2024 12:45:25 -0400 Subject: [PATCH] Correct syntax error in ubuntu arm profile init --- confluent_osdeploy/ubuntu22.04/profiles/default/initprofile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_osdeploy/ubuntu22.04/profiles/default/initprofile.sh b/confluent_osdeploy/ubuntu22.04/profiles/default/initprofile.sh index 28d7e74c..cebcd41d 100644 --- a/confluent_osdeploy/ubuntu22.04/profiles/default/initprofile.sh +++ b/confluent_osdeploy/ubuntu22.04/profiles/default/initprofile.sh @@ -8,7 +8,7 @@ if [ -d $1/EFI/boot/ ]; then elif [ -d $1/efi/boot/ ]; then ln -s $1/efi/boot/* $2/boot/efi/boot else - echo "Unrecogrized boot contents in media" > &2 + echo "Unrecogrized boot contents in media" >&2 exit 1 fi