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..."