Add example project

This commit is contained in:
2024-07-31 14:38:05 -04:00
parent 7a0b3e41c4
commit dd583ddd83
242 changed files with 2353 additions and 1 deletions

View File

@@ -239,7 +239,7 @@ ask_pn() {
EOF
trys=3 # give the user up to 3 tries to enter a valid project name
for ((i=1; i<=trys; i++)); do
read -r -p "Enter a new or existing project name or enter for default: $example_pn: " PROJECT
read -r -p "Enter a new or existing project name or enter for default ($example_pn): " PROJECT
if [[ -z $PROJECT ]]; then
PROJECT="$example_pn" && break
else
@@ -426,6 +426,7 @@ init_project() {
EOF
# TODO here we'll copy scans from robot but for now let's pause and wait for transfer
echo "In the future we will copy scans from robot here"
read -r -p "Hit <Enter> to continue: "
}