Skip to content

Commit 8f1faf2

Browse files
authored
flowey: fix typo checking for installed components (#1644)
Fixes: ``` === ensure Rust is installed (flowey_lib_common::install_rust) === $ rustc -vV rustc 1.88.0 (6b00bc388 2025-06-23) binary: rustc commit-hash: 6b00bc3880198600130e1cf62b8f8a93494488cc commit-date: 2025-06-23 host: aarch64-unknown-linux-gnu release: 1.88.0 LLVM version: 20.1.5 Error: missing required compoment: rust-src; to install: `rustup compoment add rust-src` ```
1 parent 8d9fe95 commit 8f1faf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flowey/flowey_lib_common/src/install_rust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl FlowNode for Node {
135135
if let Ok(rustup) = which::which("rustup") {
136136
for (thing, expected_things) in [
137137
("target", &additional_target_triples),
138-
("compoment", &additional_components),
138+
("component", &additional_components),
139139
] {
140140
let output = xshell::cmd!(
141141
sh,

0 commit comments

Comments
 (0)