Browse and listen to thousands of radio stations across the globe right from your terminal ๐ŸŒŽ ๐Ÿ“ป ๐ŸŽตโœจ
radio rust tokio web-radio command-line-tool tui

ci: fix protoc

Changed files
+7
.fluentci
src
dagger
tools
+5
.fluentci/src/dagger/jobs.ts
··· 116 "TARGET", 117 Deno.env.get("TARGET") || "x86_64-unknown-linux-gnu", 118 ) 119 .withExec(["sh", "-c", "rustup target add $TARGET"]) 120 .withExec(["sh", "-c", "cargo build --release --target $TARGET"]) 121 .withExec(["sh", "-c", "cp target/${TARGET}/release/tunein ."])
··· 116 "TARGET", 117 Deno.env.get("TARGET") || "x86_64-unknown-linux-gnu", 118 ) 119 + .withExec([ 120 + "sh", 121 + "-c", 122 + "mv /usr/bin/protoc /usr/bin/_protoc && cp tools/protoc /usr/bin/protoc && chmod a+x /usr/bin/protoc", 123 + ]) 124 .withExec(["sh", "-c", "rustup target add $TARGET"]) 125 .withExec(["sh", "-c", "cargo build --release --target $TARGET"]) 126 .withExec(["sh", "-c", "cp target/${TARGET}/release/tunein ."])
+2
tools/protoc
···
··· 1 + #!/bin/bash 2 + _protoc --experimental_allow_proto3_optional "$@"