Skip to content

Commit

Permalink
fix copy
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkring authored Aug 27, 2024
1 parent 96d085b commit 1c5f1cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ USER labview
ENV USER=labview
ENV GITHUB_REPOSITORY=${GITHUB_REPOSITORY}

ARG src="src/JSON Serialization.vipc"

# note that files after the first COPY are optional, which is nice (since might not have a dev.vipc)
# also note that dockerfile doesn't do whitespace characters, which is why we have a * in the COPY command
COPY "src/JSON Serialization.vipc" ./source.vipc
COPY ${src} ./source.vipc

# the script below will apply VIPC files, if they are found.
RUN if [ -f dev.vipc ] || [ -f source.vipc ]; then \
Expand Down

0 comments on commit 1c5f1cb

Please sign in to comment.