Skip to content

Commit

Permalink
updated scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Dec 5, 2023
1 parent 0e20489 commit 68f533d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions redo-everything-from-scratch
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ optdirs='colibri-core colibri-utils'
exes='timbl timblserver mbt mbtserver dimbl ucto frog folialint FoLiA-stats FoLiA-alto FoLiA-hocr TICCL-lexclean TICCL-indexerNT wopr'

partdirs=()
if [ $restart != "" ]
if [ "$restart" != "" ]
then
for app in $dirs
do
# echo "app=$app restart=$restart"
echo "app=$app restart=$restart"
if [ $app = $restart ]
then
partdirs+="$app "
Expand All @@ -60,7 +60,12 @@ then
done
fi

dirs=$partdirs
if [ "$partdirs" != "" ];
then
dirs=$partdirs
fi

echo "building for $dirs"

#sanity check for REQUIRED directories
for app in $dirs
Expand Down

0 comments on commit 68f533d

Please sign in to comment.