Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Nov 8, 2023
1 parent 576f3f6 commit 52aff53
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/planner/ostree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ use crate::{
settings::{InitSystem, InstallSettingsError},
Action, BuiltinPlanner,
};
use std::{collections::HashMap, path::PathBuf};
use std::{
collections::HashMap,
path::{Path, PathBuf},
};

use super::{
linux::{
Expand Down Expand Up @@ -172,7 +175,7 @@ impl Planner for Ostree {
.position(|v| *v == PathBuf::from("/usr/share/fish/"))
{
shell_profile_locations.fish.vendor_confd_prefixes =
&[OSTREE_FISH_PROFILE_LOCATION.into()];
vec![OSTREE_FISH_PROFILE_LOCATION.into()];
}

plan.push(
Expand Down

0 comments on commit 52aff53

Please sign in to comment.