Skip to content

Commit

Permalink
...Be more specific when matching the preludes
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Dec 5, 2024
1 parent 7c7a7bd commit 9b7b344
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 @@ -95,7 +95,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 9b7b344

Please sign in to comment.