Skip to content

Commit 91ef313

Browse files
authored
fixing issue with missing folder on ci
1 parent 7507e46 commit 91ef313

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,13 @@ jobs:
4545
4646
- name: Run Tests
4747
run: |
48-
# Create the CommandBox modules folder, for some reason it is not created
49-
mkdir -p ~/.CommandBox/cfml/modules
50-
# Link up the module so we can do testing!
51-
box link --force
52-
# Test
53-
box task run taskfile=build/Build target="runTests"
48+
# Create the CommandBox modules folder, for some reason it is not created
49+
rm -Rf ~/.CommandBox/cfml/modules/coldbox-cli
50+
mkdir -p ~/.CommandBox/cfml/modules
51+
# Link up the module so we can do testing!
52+
box link --force
53+
# Test
54+
box task run taskfile=build/Build target="runTests"
5455
5556
- name: Failure Logs
5657
if: failure()

0 commit comments

Comments
 (0)