Skip to content

Commit

Permalink
fix: update cloning command
Browse files Browse the repository at this point in the history
  • Loading branch information
apskhem committed Dec 13, 2023
1 parent f7bcfa3 commit a3685f4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions hermes/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ VERSION 0.7
fork-wasi-component-adapter:
LOCALLY

RUN git clone --depth 1 https://github.com/bytecodealliance/wasmtime.git
RUN mv wasmtime/crates/wasi-preview1-component-adapter crates/wasi-preview1-component-adapter
RUN rm -rf wasmtime/
RUN rm -rf crates/wasi-preview1-component-adapter || true && \
git clone --depth 1 https://github.com/bytecodealliance/wasmtime.git && \
mv wasmtime/crates/wasi-preview1-component-adapter crates/wasi-preview1-component-adapter && \
rm -rf wasmtime/

# Set up our target toolchains, and copy our files.
builder:
Expand Down

0 comments on commit a3685f4

Please sign in to comment.