From 91ef313b545bcd6085a3bedff9254bd98ef182ed Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Wed, 20 Mar 2024 10:39:20 +0100 Subject: [PATCH] fixing issue with missing folder on ci --- .github/workflows/tests.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8a9d6f6..bbb4737 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,12 +45,13 @@ jobs: - name: Run Tests run: | - # Create the CommandBox modules folder, for some reason it is not created - mkdir -p ~/.CommandBox/cfml/modules - # Link up the module so we can do testing! - box link --force - # Test - box task run taskfile=build/Build target="runTests" + # Create the CommandBox modules folder, for some reason it is not created + rm -Rf ~/.CommandBox/cfml/modules/coldbox-cli + mkdir -p ~/.CommandBox/cfml/modules + # Link up the module so we can do testing! + box link --force + # Test + box task run taskfile=build/Build target="runTests" - name: Failure Logs if: failure()