Skip to content

Commit 7b22acf

Browse files
fix(cli): detect Biome daemon pipes on Windows
1 parent 36d5aa7 commit 7b22acf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/biome_cli/src/service/windows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub(crate) fn enumerate_pipes() -> io::Result<impl Iterator<Item = (String, Utf8
3434
let entry = Utf8PathBuf::from_path_buf(entry.ok()?.path()).ok()?;
3535
let file_name = entry.file_name()?;
3636

37-
let version = file_name.strip_prefix("rome-service")?;
37+
let version = file_name.strip_prefix("biome-service")?;
3838
if version.is_empty() {
3939
Some((String::new(), entry))
4040
} else {

0 commit comments

Comments
 (0)