Skip to content

Commit

Permalink
fixes the filename error on the files downloaded from IPFS
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-at-decenomy committed Oct 4, 2024
1 parent 6df8725 commit ae593d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pipeline {
rm -rf SDKs
mkdir SDKs
cd SDKs
wget -c https://ipfs.decenomy.net/QmccbpJcugkoV6uVovYsyZ3MPxGTcbUNYXMhLQL2hLzHwH?filename=MacOSX10.11.sdk.tar.xz
wget -c https://ipfs.decenomy.net/QmccbpJcugkoV6uVovYsyZ3MPxGTcbUNYXMhLQL2hLzHwH -O MacOSX10.11.sdk.tar.xz
tar -xf MacOSX10.11.sdk.tar.xz
cd ..
make -j $(nproc) HOST=x86_64-apple-darwin14
Expand Down
2 changes: 1 addition & 1 deletion contrib/docker/Dockerfile.dsw-develop-builder
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ RUN git pull origin $TARGET
RUN mkdir -p /DSW/depends/SDKs
WORKDIR /DSW/depends/SDKs

RUN curl -LO https://ipfs.decenomy.net/QmccbpJcugkoV6uVovYsyZ3MPxGTcbUNYXMhLQL2hLzHwH?filename=MacOSX10.11.sdk.tar.xz
RUN curl -LOJ https://ipfs.decenomy.net/QmccbpJcugkoV6uVovYsyZ3MPxGTcbUNYXMhLQL2hLzHwH?filename=MacOSX10.11.sdk.tar.xz
RUN touch -t $(cat /git_timestamp_touch) /DSW/depends/SDKs/MacOSX10.11.sdk.tar.xz
RUN PATH=${WRAP_DIR}:${PATH} tar -C /DSW/depends/SDKs -xf /DSW/depends/SDKs/MacOSX10.11.sdk.tar.xz
RUN rm /DSW/depends/SDKs/MacOSX10.11.sdk.tar.xz
Expand Down
2 changes: 1 addition & 1 deletion contrib/docker/Dockerfile.dsw-macos-x64-builder
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RUN git clone https://github.com/decenomy/DSW.git
RUN mkdir -p /DSW/depends/SDKs
WORKDIR /DSW/depends/SDKs

RUN curl -LO https://ipfs.decenomy.net/QmccbpJcugkoV6uVovYsyZ3MPxGTcbUNYXMhLQL2hLzHwH?filename=MacOSX10.11.sdk.tar.xz
RUN curl -LOJ https://ipfs.decenomy.net/QmccbpJcugkoV6uVovYsyZ3MPxGTcbUNYXMhLQL2hLzHwH?filename=MacOSX10.11.sdk.tar.xz
RUN touch -t $(cat /git_timestamp_touch) /DSW/depends/SDKs/MacOSX10.11.sdk.tar.xz
RUN PATH=${WRAP_DIR}:${PATH} tar -C /DSW/depends/SDKs -xf /DSW/depends/SDKs/MacOSX10.11.sdk.tar.xz
RUN rm /DSW/depends/SDKs/MacOSX10.11.sdk.tar.xz
Expand Down

0 comments on commit ae593d3

Please sign in to comment.