From 63aecdb448ba666bd3f72644077688e67f038a8e Mon Sep 17 00:00:00 2001 From: Gregory Jefferis Date: Thu, 10 Oct 2024 19:08:19 +0100 Subject: [PATCH] need to specify cmtk branch in git clone * otherwise it's not available --- build-cmtk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-cmtk.sh b/build-cmtk.sh index e7891860..2e1e158c 100755 --- a/build-cmtk.sh +++ b/build-cmtk.sh @@ -3,7 +3,7 @@ set -e # check to see if cmtk install folder is empty if [ ! -d "$HOME/usr/local/bin" ]; then mkdir -p $HOME/src && cd $HOME/src - git clone --depth 50 https://github.com/jefferis/cmtk + git clone --depth 10 --branch natdev https://github.com/jefferis/cmtk cd cmtk && git checkout natdev cd core && mkdir build && cd build && cmake .. && make DESTDIR=$HOME/ all install else