Skip to content

Commit 3c2acc6

Browse files
committed
Fix typos in error messages for installation scripts
1 parent e2bdc01 commit 3c2acc6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

standalone-node/installation_scripts/standalone-vm-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ sudo -E qemu-system-x86_64 \
118118
-device e1000,netdev=net0
119119
# shellcheck disable=SC2181
120120
if [ "$?" -ne 0 ]; then
121-
echo "Intallation VM launch Failed,Please check!!"
121+
echo "Installation VM launch Failed,Please check!!"
122122
fi
123123

124124
trap 'killall --quiet standalone-vm-launch.sh || true' EXIT

standalone-node/provisioning_scripts/install-os.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ main() {
987987
PROVISION_STEP=2
988988
show_progress_bar "$PROVISION_STEP" "OS Setup "
989989
if ! install_os_on_disk >> "$LOG_FILE" 2>&1; then
990-
echo -e "${RED}\nERROR:OS Installation failed,Please check $LOG_FILE for more deatisl,Aborting.${NC}" | tee /dev/tty1
990+
echo -e "${RED}\nERROR:OS Installation failed,Please check $LOG_FILE for more details,Aborting.${NC}" | tee /dev/tty1
991991
exit 1
992992
fi
993993

@@ -1005,15 +1005,15 @@ main() {
10051005
PROVISION_STEP=4
10061006
show_progress_bar "$PROVISION_STEP" "Enable OS-Partitions on Platform"
10071007
if ! create_os-partition >> "$LOG_FILE" 2>&1; then
1008-
echo -e "${RED}\nERROR:OS-Partitions Creatation Failed on platfrom,please check $LOG_FILE for more details,Aborting.${NC}"| tee /dev/tty1
1008+
echo -e "${RED}\nERROR:OS-Partitions Creation Failed on platform,please check $LOG_FILE for more details,Aborting.${NC}"| tee /dev/tty1
10091009
exit 1
10101010
fi
10111011
else
10121012
# Step 4: Enable DM Verity on the platfoem
10131013
PROVISION_STEP=4
10141014
show_progress_bar "$PROVISION_STEP" "Enable DM Verity on Platform"
10151015
if ! enable_dm_verity >> "$LOG_FILE" 2>&1; then
1016-
echo -e "${RED}\nERROR:DM Verity Enablement Failed on platfrom,please check $LOG_FILE for more details,Aborting.${NC}"| tee /dev/tty1
1016+
echo -e "${RED}\nERROR:DM Verity Enablement Failed on platform,please check $LOG_FILE for more details,Aborting.${NC}"| tee /dev/tty1
10171017
exit 1
10181018
fi
10191019
fi

0 commit comments

Comments
 (0)