| ... | ... | @@ -59,8 +59,9 @@ unset CXX |
| 59 | 59 | |
| 60 | 60 | make $JOBS install |
| 61 | 61 | |
| 62 | | # look for formatting errors |
| 63 | | release/bin/zig fmt --check --ast-check .. || (echo "Please run 'zig fmt' to fix the non-conforming files listed above." && false) |
| 62 | # Look for formatting errors and AST errors. |
| 63 | # Formatting errors can be fixed by running `zig fmt` on the files printed here. |
| 64 | release/bin/zig fmt --check --ast-check .. |
| 64 | 65 | |
| 65 | 66 | # Here we rebuild zig but this time using the Zig binary we just now produced to |
| 66 | 67 | # build zig1.o rather than relying on the one built with stage0. See |