Second attempt of the second attempt (#14)

pull/2/head
Dave Gauer 4 years ago
parent 3693a35aeb
commit 9b54ba79a0

@ -32,7 +32,7 @@ to also check out these Zig language resources for more detail:
Install a [development build](https://ziglang.org/download/) of the Zig compiler. Install a [development build](https://ziglang.org/download/) of the Zig compiler.
(See the "master" section of the downloads page.) (See the "master" section of the downloads page.)
Verify the installation and build version of `zig` like so: Verify the installation and build number of `zig` like so:
```bash ```bash
$ zig version $ zig version
@ -55,10 +55,10 @@ $ zig build
## A Note About Versions ## A Note About Versions
The Zig language is under very active development. In order to be current, The Zig language is under very active development. In order to be current,
Ziglings tracks development builds of the Zig compiler rather than versioned Ziglings tracks **development** builds of the Zig compiler rather than
releases. The last stable release was `0.7.1`, but Ziglings needs a dev build versioned **release** builds. The last stable release was `0.7.1`, but Ziglings
with pre-release version "0.8.0" and a build number at least as high as that needs a dev build with pre-release version "0.8.0" and a build number at least
shown in the example version check above. as high as that shown in the example version check above.
It is likely that you'll download a build which is _greater_ than the minimum. It is likely that you'll download a build which is _greater_ than the minimum.

@ -273,11 +273,11 @@ pub fn build(b: *Builder) void {
stderrPrintFn( stderrPrintFn(
\\ERROR: Sorry, it looks like your version of zig is too old. :-( \\ERROR: Sorry, it looks like your version of zig is too old. :-(
\\ \\
\\Ziglings requires a development ("master") build \\Ziglings requires development build
\\ \\
\\ 0.8.0-dev.1065 \\ 0.8.0-dev.1065
\\ \\
\\or higher. Please download a development build from \\or higher. Please download a development ("master") build from
\\https://ziglang.org/download/ \\https://ziglang.org/download/
\\ \\
, .{}); , .{});

Loading…
Cancel
Save