Skip to content

Commit 850b5c8

Browse files
committed
fix: auto accept rustup defaults
1 parent e50870c commit 850b5c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fluentci # Run the pipeline
8080
fluentci --help
8181

8282
Usage: fluentci [pipeline] [jobs...]
83-
Version: 0.12.7
83+
Version: 0.12.8
8484

8585
Description:
8686

src/consts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { dir } from "../deps.ts";
22

3-
export const VERSION = "0.12.7";
3+
export const VERSION = "0.12.8";
44

55
export const BASE_URL = "https://api.fluentci.io/v1";
66

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export async function setupRust() {
198198
const command = new Deno.Command("bash", {
199199
args: [
200200
"-c",
201-
`type rustup >/dev/null 2>&1 || curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -- -y`,
201+
`type rustup >/dev/null 2>&1 || curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y`,
202202
],
203203
stdout: "inherit",
204204
stderr: "inherit",

0 commit comments

Comments
 (0)