Skip to content

Commit

Permalink
Match fstab preludes more specifically.
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Dec 5, 2024
1 parent fd7da1e commit 469c43c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/action/macos/create_fstab_entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ impl Action for CreateFstabEntry {
.lines()
.filter_map(|line| {
// Delete nix-installer entries with a "prelude" comment
if line.starts_with("# nix-installer") {
if line.starts_with("# nix-installer created volume labelled") {
None
} else {
Some(line)
Expand Down

0 comments on commit 469c43c

Please sign in to comment.