Skip to content

Commit

Permalink
fix github actions build error
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-at-decenomy committed May 20, 2024
1 parent ee179f4 commit b79fc98
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion contrib/docker/Dockerfile.dsw-linux-arm64-wallet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ ARG BASE_NAME=__decenomy__
ARG TARGET=master

# Clone the repository
RUN [ ! -d /$TICKER ] || [ -z "$(ls -A /$TICKER)" ] && git clone https://github.com/decenomy/$TICKER
RUN if [ ! -d $TICKER ]; then \
git clone https://github.com/decenomy/$TICKER; \
fi

# Switch to the repository directory
WORKDIR /$TICKER
Expand Down
4 changes: 3 additions & 1 deletion contrib/docker/Dockerfile.dsw-linux-x64-wallet
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ ARG BASE_NAME=__decenomy__
ARG TARGET=master

# Clone the repository
RUN [ ! -d /$TICKER ] || [ -z "$(ls -A /$TICKER)" ] && git clone https://github.com/decenomy/$TICKER
RUN if [ ! -d $TICKER ]; then \
git clone https://github.com/decenomy/$TICKER; \
fi

# Switch to the repository directory
WORKDIR /$TICKER
Expand Down
4 changes: 3 additions & 1 deletion contrib/docker/Dockerfile.dsw-macos-x64-wallet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ ARG BASE_NAME=__decenomy__
ARG TARGET=master

# Clone the repository
RUN [ ! -d /$TICKER ] || [ -z "$(ls -A /$TICKER)" ] && git clone https://github.com/decenomy/$TICKER
RUN if [ ! -d $TICKER ]; then \
git clone https://github.com/decenomy/$TICKER; \
fi

# Switch to the repository directory
WORKDIR /$TICKER
Expand Down
4 changes: 3 additions & 1 deletion contrib/docker/Dockerfile.dsw-windows-x64-wallet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ ARG BASE_NAME=__decenomy__
ARG TARGET=master

# Clone the repository
RUN [ ! -d /$TICKER ] || [ -z "$(ls -A /$TICKER)" ] && git clone https://github.com/decenomy/$TICKER
RUN if [ ! -d $TICKER ]; then \
git clone https://github.com/decenomy/$TICKER; \
fi

# Switch to the repository directory
WORKDIR /$TICKER
Expand Down

0 comments on commit b79fc98

Please sign in to comment.