fix the skip_install

This commit is contained in:
Václav Pavlín 2026-01-15 16:20:31 +01:00
parent 0f77efb25e
commit af677abc86
No known key found for this signature in database
GPG Key ID: B378FB31BB6D89A5
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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