Skip to content

Commit

Permalink
fixes the error: destination path 'DSW' already exists and is not an …
Browse files Browse the repository at this point in the history
…empty directory.
  • Loading branch information
pedro-at-decenomy committed May 20, 2024
1 parent 49da551 commit ee179f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/docker/Dockerfile.dsw-linux-arm64-wallet
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ARG BASE_NAME=__decenomy__
ARG TARGET=master

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

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

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

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

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

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

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

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

0 comments on commit ee179f4

Please sign in to comment.