From 21df393b0f2f4f5fe95e5b9c4373d8181e70490d Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Thu, 31 Oct 2019 12:41:03 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=20Suggest=20commands=20to=20fix=20dat?= =?UTF-8?q?a=20submodule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build b/build index d155e58..c0380e0 100755 --- a/build +++ b/build @@ -24,11 +24,13 @@ check_data_subdir() { download=0 if ! check_data_subdir; then - select choice in "Abort to $DATA_SUBDIR" "Download data files"; do + select choice in "Abort to manually fix $DATA_SUBDIR submodule" "Download data files from the web"; do if [ $REPLY = 1 ]; then - #git submodule update --init - #(cd data && git annex init --version=7) - #(cd data && git remote add nfs /path/to/GitNX-Repository/qurator/qurator-data) + echo "Suggested commands:" + echo + echo "git submodule update --init" + echo "(cd $DATA_SUBDIR && git annex init --version=7)" + echo "(cd $DATA_SUBDIR && git remote add nfs /<... path to ...>/GitNX-Repository/qurator/qurator-data)" exit else download=1