From d55389c86860304a262c44fd8e7bfbbb7e5bca31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20L=C3=A4ufer?= Date: Wed, 1 Nov 2023 16:06:08 -0500 Subject: [PATCH] modified GitHub workflow to add symlink to data directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Konstantin Läufer --- .github/workflows/cmake.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 6151dde..6716759 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -38,8 +38,8 @@ jobs: # At the moment, these are all standalone programs working-directory: ${{github.workspace}}/build run: > - ln -s ../data - for exe in bin/*; do - echo "Running ./$exe" - "./$exe" - done + - ln -s ../data + - for exe in bin/*; do + echo "Running ./$exe" + "./$exe" + done