From e87739bc4ac18484d33f3863611eb632036e82f7 Mon Sep 17 00:00:00 2001 From: Daniel Axtens Date: Tue, 7 Jan 2025 01:19:28 +1100 Subject: [PATCH] Use the name native_bootstrap.sh consistently Otherwise, the bootstrap fails when trying to delete bootstrap.sh which doesn't exist --- native_bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/native_bootstrap.sh b/native_bootstrap.sh index 1c5bf92..c23904e 100755 --- a/native_bootstrap.sh +++ b/native_bootstrap.sh @@ -847,7 +847,7 @@ usage() echo "------------------------" echo "|Redox bootstrap script|" echo "------------------------" - echo "Usage: ./bootstrap.sh" + echo "Usage: ./native_bootstrap.sh" echo "OPTIONS:" echo echo " -h,--help Show this prompt" @@ -864,7 +864,7 @@ usage() echo " package managers are supported." echo "EXAMPLES:" echo - echo "./bootstrap.sh -e qemu" + echo "./native_bootstrap.sh -e qemu" exit } @@ -983,7 +983,7 @@ boot() echo "Creating .config with PODMAN_BUILD=0" echo 'PODMAN_BUILD?=0' > redox/.config echo "Cleaning up..." - rm bootstrap.sh + rm native_bootstrap.sh echo echo "---------------------------------------" echo "Well it looks like you are ready to go!"