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

github.com/marian-nmt/marian-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShufang Xie <xieshufang76@gmail.com>2019-03-05 09:33:58 +0300
committerGitHub <noreply@github.com>2019-03-05 09:33:58 +0300
commitf2524d80e187ea83e5fd52d0edf90308f361134b (patch)
treea06d5a98c194a132d7c4fd1ca0b35ae8d150715a
parentffa99cf481ed92fd16251c140551c3b469aacfd1 (diff)
Fix syntax error in run-me.sh
There should be a $ sign before the variable name
-rwxr-xr-xwmt2017-transformer/run-me.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/wmt2017-transformer/run-me.sh b/wmt2017-transformer/run-me.sh
index 9907618..cff24dd 100755
--- a/wmt2017-transformer/run-me.sh
+++ b/wmt2017-transformer/run-me.sh
@@ -27,7 +27,7 @@ N=4
EPOCHS=8
B=12
-if [ ! -e MARIAN_TRAIN ]
+if [ ! -e $MARIAN_TRAIN ]
then
echo "marian is not installed in $MARIAN, you need to compile the toolkit first"
exit 1