Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2019-09-06 22:41:30 +0300
committerGitHub <noreply@github.com>2019-09-06 22:41:30 +0300
commit0632de3ba2c3fd2ab219941361961937138e3c0d (patch)
treea4509c85e1600aaaf67b03f22997486528a63eea /Makefile
parent504922d7fae39c0d019ea40ceb211bc2230943f2 (diff)
Bug fix in makefile: mkdir -p $@ for target tools
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 00e378b..07ba8f8 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,7 @@ run: install
install: tools models data
tools:
+ mkdir -p $@
git -C $@/moses-scripts pull || git clone $(GIT_MOSES_SCRIPTS) $@/moses-scripts
git -C $@/subword-nmt pull || git clone $(GIT_SUBWORD_NMT) $@/subword-nmt
pip3 install --user $(PIP_PACKAGES)