Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Gutekanst <[email protected]>
  • Loading branch information
emidoots committed Oct 4, 2024
1 parent b5b5129 commit f827edc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Downloads like http://localhost/zig/zig-linux-x86_64-0.13.0.tar.xz will be fetch
http://localhost/zig/index.json is like https://ziglang.org/download/index.json with some small differences:

* It is fetched from ziglang.org once every 15 minutes and cached in-memory.
* Entries from https://machengine.org/zig/index.json are added so the index.json _additionally_ contains Mach [nominated Zig versions](https://machengine.org/about/nominated-zig/)
* Entries from https://machengine.org/zig/index.json are added so the index.json _additionally_ contains Mach [nominated Zig versions](https://machengine.org/docs/nominated-zig/)
* `tarball` fields are rewritten to point to the configured `ExternalURL`

If you want to run Wrench as a system service, have it auto-start after reboot, etc. then you can e.g. put the config file in `/root/wrench/config.toml`, run `wrench svc install` as root to install the systemd service, use `wrench svc start` to start the service, and `wrench svc status` to see the status and log file locations.
2 changes: 1 addition & 1 deletion internal/wrench/scripts/nominate_zig.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func init() {
}
newVersion.Set(key, value)
if key == "stdDocs" {
newVersion.Set("machDocs", "https://machengine.org/about/nominated-zig")
newVersion.Set("machDocs", "https://machengine.org/docs/nominated-zig")
newVersion.Set("machNominated", time.Now().Format("2006-01-02"))
}
}
Expand Down
2 changes: 1 addition & 1 deletion internal/wrench/scripts/rewrite_zig_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func init() {
return contents, nil
}
err := FindAndReplace(".", []string{
"**/content/about/zig-version.md",
"**/content/docs/zig-version.md",
"**/*.yml",
"**/*.yaml",
"build.zig",
Expand Down

0 comments on commit f827edc

Please sign in to comment.