From 011023f3d6ff7584515ad20ef5bd4e4fb3482a40 Mon Sep 17 00:00:00 2001 From: Dennis Buchhorn Date: Tue, 18 Jan 2022 17:56:52 +0100 Subject: [PATCH] feat: update 'first run' message --- clean_and_recreate_all | 1 + init_after_clone | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/clean_and_recreate_all b/clean_and_recreate_all index c7c76c4..1b740f8 100755 --- a/clean_and_recreate_all +++ b/clean_and_recreate_all @@ -25,6 +25,7 @@ echo "# Delete all unstaged and untracked files ..." echo "############################################################" if [ -f ".repo_initialized" ]; then REPO_INITIALIZED_FILE_EXISTS="true" + rm -f .repo_initialized fi git clean -dfx diff --git a/init_after_clone b/init_after_clone index 1d4e62b..f1fbe5f 100755 --- a/init_after_clone +++ b/init_after_clone @@ -14,10 +14,14 @@ else echo "############################################################" echo "# First run after creation from template." echo "#" - echo "# Have you copied the hardware description file and set" - echo "# the path to it in 'tcl_scripts/platform_create.tcl?'" + echo "# Have you copied the hardware description file?" echo "#" - echo "# If not, set it and rerun this script!" + echo "# Have you copied all relevant drivers?" + echo "#" + echo "# Have you set all necessary paths and options in" + echo "# the 'tcl_scripts/platform_create.tcl' script?" + echo "#" + echo "# If not, copy and/or set it and re-run this script!" echo "############################################################" read -p "Press ENTER to continue or CTRL+C to abort..."