emphasizing the default choices in the setup-project script
authorAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Fri, 18 Jan 2019 11:32:22 +0000 (12:32 +0100)
committerAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Fri, 18 Jan 2019 11:32:34 +0000 (12:32 +0100)
setup-project.sh

index c3fafc34851e5f238896541bc8ac530588776898..709386e2a50f7eab9afae9ce8d59b40ff6dce38b 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-echo -n "Clear eclipse project? [y,n]"
+echo -n "Clear eclipse project? [y,N]"
 read choice
 
 if [ "$choice" == "y" ]; then
@@ -8,7 +8,7 @@ if [ "$choice" == "y" ]; then
        find -type d -name ".settings" -prune -exec rm -rf {} \;
 fi
 
-echo -n "Use the local repo? [y,n]"
+echo -n "Use the local repo? [y,N]"
 read choice
 
 if [ "$choice" == "y" ]; then