From 709b1c09177f3fa4967d40597c92ffce4d69ef5a Mon Sep 17 00:00:00 2001 From: tchncs Date: Tue, 19 Jul 2016 23:06:40 +0200 Subject: [PATCH] gitlab-ci: checkout submodules before running luac --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 73fc7ca0..bd73a918 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,5 @@ syntax: script: - - luac5.1 -s -p mods/*/*.lua \ No newline at end of file + - git submodule init + - git submodule update + - luac5.1 -s -p mods/*/*.lua