From c5ff0d0fdc1ac6a0f65e16f4a0b956d3c0630b1f Mon Sep 17 00:00:00 2001 From: rschoene <rene.schoene@tu-dresden.de> Date: Thu, 28 Jan 2021 17:24:10 +0100 Subject: [PATCH] use absolute path to start scripts --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f26902..12a2454 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ ragdoc_build: - ls -lah - JAVA_FILES=$(find src/ -name '*.java') - echo $JAVA_FILES - - ./start-build.sh -d data/ $JAVA_FILES + - /ragdoc-builder/start-build.sh -d data/ $JAVA_FILES artifacts: paths: - "data/" @@ -54,7 +54,7 @@ ragdoc_view: - pwd - ls -lah - ( cd src/ && ln -s ../data ) - - ./build-view.sh + - /ragdoc-view/build-view.sh artifacts: paths: - "dist/" -- GitLab