mirror of
https://github.com/logos-blockchain/logos-blockchain-circuits.git
synced 2026-02-16 11:13:08 +00:00
fix the skip_install
This commit is contained in:
parent
0f77efb25e
commit
af677abc86
@ -62,7 +62,7 @@ All options are passed directly to `build-local.sh` inside the container.
|
||||
|----------|-------------|
|
||||
| `DOCKER_BUILD=0` | Skip rebuilding the Docker image |
|
||||
| `DOCKER_NOCACHE=1` | Force rebuild Docker image without cache |
|
||||
| `SKIP_INSTALL=true` | Install artifacts to `~/.nomos-circuits` after build |
|
||||
| `SKIP_INSTALL=1` | Skip installing artifacts to `~/.nomos-circuits` after build |
|
||||
|
||||
### [`Dockerfile`](Dockerfile)
|
||||
|
||||
|
||||
@ -97,7 +97,7 @@ docker run --rm $DOCKER_FLAGS \
|
||||
|
||||
log_success "Docker build completed!"
|
||||
|
||||
if [[ $SKIP_INSTALL == false ]]; then
|
||||
if [[ $SKIP_INSTALL == "1" ]]; then
|
||||
log_info "Remember to install the built artifacts if needed."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user