From 269c0087f1ba1aec98818598b997b97bc6d3bb3c Mon Sep 17 00:00:00 2001 From: zai1208 Date: Tue, 30 Sep 2025 06:42:45 +1000 Subject: [PATCH 1/2] Add missing `shell`s to the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bc2e334..2ee9245 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,13 @@ Nightly binary builds are found here: [neurocyte/flow-nightly/releases](https:// Install latest nightly build and (optionally) specify the installation destination: -``` +```shell curl -fsSL https://flow-control.dev/install | sh -s -- --nightly --dest ~/.local/bin ``` See all avalable options for the installer script: -``` +```shell curl -fsSL https://flow-control.dev/install | sh -s -- --help ``` From 5c844410ffe39ee5e4579b9ab4ceb2029b5f890c Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 29 Sep 2025 22:58:18 +0200 Subject: [PATCH 2/2] build: disable windows builds until fixed --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index e6a043e..df4815c 100644 --- a/build.zig +++ b/build.zig @@ -97,8 +97,8 @@ fn build_release( .{ .cpu_arch = .arm, .os_tag = .linux, .abi = .musleabihf }, .{ .cpu_arch = .x86_64, .os_tag = .macos }, .{ .cpu_arch = .aarch64, .os_tag = .macos }, - .{ .cpu_arch = .x86_64, .os_tag = .windows }, - .{ .cpu_arch = .aarch64, .os_tag = .windows }, + // .{ .cpu_arch = .x86_64, .os_tag = .windows }, + // .{ .cpu_arch = .aarch64, .os_tag = .windows }, }; const optimize_release = .ReleaseFast; const optimize_debug = .ReleaseSafe;