Skip to content

Commit d0a2c85

Browse files
committed
Trying to fix that [Oo]utput folder name case
1 parent 8ce5571 commit d0a2c85

3 files changed

Lines changed: 8 additions & 9 deletions

File tree

.earthlyignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
.vscode/*
55
build.earth
66
# ignore Output (because we output there now)
7-
/Output/*
7+
[oO]utput/*
88
# These aren't part of the module (yet)
9-
/PotentialContribution/*
10-
/Content/*
9+
PotentialContribution/*
10+
Content/*
1111

.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# All of these folders are (or were) build outputs
22
[0-9]*/
3-
Modules/
4-
Output/
5-
obj/
6-
Tools/
3+
[Mm]odules/
4+
[Oo]utput/
5+
[Tt]ools/
76
coverage.xml

build.earth

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ build:
4646
RUN -- pwsh -File "${IB_TASK_ROOT}/scripts/Invoke-Build.ps1" Build
4747

4848
# SAVE ARTIFACT [--keep-ts] [--keep-own] [--if-exists] [--force] <src> [<artifact-dest-path>] [AS LOCAL <local-path>]
49-
SAVE ARTIFACT $IB_OUTPUT_ROOT/$IB_MODULE_NAME AS LOCAL ./Output/$IB_MODULE_NAME
49+
SAVE ARTIFACT $IB_OUTPUT_ROOT/$IB_MODULE_NAME AS LOCAL ./output/$IB_MODULE_NAME
5050

5151
# test runs the tests and probably fails if the tests fail
5252
test:
5353
ARG EARTHLY_GIT_BRANCH
5454
BUILD +build
5555
FROM +build
5656
RUN -- pwsh -File "${IB_TASK_ROOT}/scripts/Invoke-Build.ps1" Test
57-
SAVE ARTIFACT $IB_RESULTS_ROOT AS LOCAL ./Output$IB_RESULTS_ROOT
57+
SAVE ARTIFACT $IB_RESULTS_ROOT AS LOCAL ./output$IB_RESULTS_ROOT
5858

5959
# publish runs publish and push tasks if the tests pass and --push was specified.
6060
# It needs the API keys to be passed in as secrets

0 commit comments

Comments
 (0)