Skip to content

Commit 622072d

Browse files
committed
Merge branch 'main' of https://github.com/PotLock/zerobuild into fix/agent-iteration-limit
2 parents 996d593 + 34d9582 commit 622072d

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.githooks/pre-push

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,32 +12,32 @@ echo "==> pre-push: running rust quality gate..."
1212
exit 1
1313
}
1414

15-
if [ "${ZEROCLAW_STRICT_LINT:-0}" = "1" ]; then
16-
echo "==> pre-push: running strict clippy warnings gate (ZEROCLAW_STRICT_LINT=1)..."
15+
if [ "${ZEROBUILD_STRICT_LINT:-0}" = "1" ]; then
16+
echo "==> pre-push: running strict clippy warnings gate (ZEROBUILD_STRICT_LINT=1)..."
1717
./scripts/ci/rust_quality_gate.sh --strict || {
1818
echo "FAIL: strict clippy warnings gate reported issues."
1919
exit 1
2020
}
2121
fi
2222

23-
if [ "${ZEROCLAW_STRICT_DELTA_LINT:-0}" = "1" ]; then
24-
echo "==> pre-push: running strict delta lint gate (ZEROCLAW_STRICT_DELTA_LINT=1)..."
23+
if [ "${ZEROBUILD_STRICT_DELTA_LINT:-0}" = "1" ]; then
24+
echo "==> pre-push: running strict delta lint gate (ZEROBUILD_STRICT_DELTA_LINT=1)..."
2525
./scripts/ci/rust_strict_delta_gate.sh || {
2626
echo "FAIL: strict delta lint gate reported issues."
2727
exit 1
2828
}
2929
fi
3030

31-
if [ "${ZEROCLAW_DOCS_LINT:-0}" = "1" ]; then
32-
echo "==> pre-push: running docs quality gate (ZEROCLAW_DOCS_LINT=1)..."
31+
if [ "${ZEROBUILD_DOCS_LINT:-0}" = "1" ]; then
32+
echo "==> pre-push: running docs quality gate (ZEROBUILD_DOCS_LINT=1)..."
3333
./scripts/ci/docs_quality_gate.sh || {
3434
echo "FAIL: docs quality gate reported issues."
3535
exit 1
3636
}
3737
fi
3838

39-
if [ "${ZEROCLAW_DOCS_LINKS:-0}" = "1" ]; then
40-
echo "==> pre-push: running docs links gate (ZEROCLAW_DOCS_LINKS=1)..."
39+
if [ "${ZEROBUILD_DOCS_LINKS:-0}" = "1" ]; then
40+
echo "==> pre-push: running docs links gate (ZEROBUILD_DOCS_LINKS=1)..."
4141
./scripts/ci/docs_links_gate.sh || {
4242
echo "FAIL: docs links gate reported issues."
4343
exit 1

0 commit comments

Comments
 (0)