fix VLS_GIT_HASH handling

This commit is contained in:
Devrandom
2024-02-27 22:19:26 +01:00
parent 0833cfba0e
commit a0ca938155
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ RUN apk update && \
ARG VLS_GIT_HASH=3abcd9525ff8da751a4a450ea40753f8bfbb80dd
RUN git clone https://gitlab.com/lightning-signer/validating-lightning-signer.git vls
RUN cd vls && \
echo building $VLS_GIT_HASH \
echo building $VLS_GIT_HASH && \
git checkout $VLS_GIT_HASH && \
cargo install --locked --path ./vls-proxy --bin vlsd2 --profile release --root /usr/local/ && \
cargo install --locked --path ./vls-cli --profile release --root /usr/local/ && \