From 88fb48306668af16f9c3593176db04bd83d935f8 Mon Sep 17 00:00:00 2001 From: Cezary Czaplewski Date: Fri, 27 Mar 2020 01:58:41 +0100 Subject: [PATCH] ctest dock srun correction --- source/unres-dock/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/unres-dock/CMakeLists.txt b/source/unres-dock/CMakeLists.txt index 8d02ec1..e52ed48 100644 --- a/source/unres-dock/CMakeLists.txt +++ b/source/unres-dock/CMakeLists.txt @@ -63,8 +63,8 @@ cat 2WFU_B.pdb >> plik1ter.pdb pdb=`ls model??.pdb |wc -w` sco=`ls template??.sco |wc -w` -if [ "$pdb" = "8" ] && [ "$sco" = "8" ]; then - echo "8 starting models generated" +if [ $pdb = 8 ] && [ $sco = 8 ]; then + echo '8 starting models generated' else exit 1 fi -- 1.7.9.5