Browse Source

feat: update 'first run' message

master
Dennis Buchhorn 2 years ago
parent
commit
011023f3d6
2 changed files with 8 additions and 3 deletions
  1. +1
    -0
      clean_and_recreate_all
  2. +7
    -3
      init_after_clone

+ 1
- 0
clean_and_recreate_all View File

@ -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


+ 7
- 3
init_after_clone View File

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


Loading…
Cancel
Save