From 1b04facbc0e2b924ae708918757247b822cabcc2 Mon Sep 17 00:00:00 2001 From: DeveloperC Date: Sat, 30 Mar 2024 20:05:09 +0000 Subject: [PATCH] build: COPY stop repeating target location (#51) --- Earthfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Earthfile b/Earthfile index ab10456..f9f442d 100644 --- a/Earthfile +++ b/Earthfile @@ -3,14 +3,13 @@ VERSION 0.7 COPY_CI_DATA: COMMAND - COPY "./ci" "./ci" - COPY ".github" ".github" + COPY --dir "ci/" ".github/" "./" COPY_METADATA: COMMAND DO +COPY_CI_DATA - COPY ".git" ".git" + COPY --dir ".git/" "./" rust-base: @@ -49,7 +48,7 @@ check-shell-formatting: yaml-formatting-base: FROM +golang-base RUN go install github.com/google/yamlfmt/cmd/yamlfmt@v0.10.0 - COPY ".yamlfmt" ".yamlfmt" + COPY ".yamlfmt" "./" DO +COPY_CI_DATA @@ -110,9 +109,7 @@ check-github-actions-workflows-linting: COPY_SOURCECODE: COMMAND DO +COPY_CI_DATA - COPY "./zsh-simple-abbreviations.zsh" "./zsh-simple-abbreviations.zsh" - COPY "./src" "./src" - COPY "./end-to-end-tests" "./end-to-end-tests" + COPY --dir "zsh-simple-abbreviations.zsh/" "src/" "end-to-end-tests/" "./" e2e-test: