We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471bbad commit 6838d76Copy full SHA for 6838d76
src/cli/self_update/shell.rs
@@ -220,12 +220,12 @@ impl UnixShell for Fish {
220
fn rcfiles(&self) -> Vec<PathBuf> {
221
let p0 = process().var("XDG_CONFIG_HOME").ok().map(|p| {
222
let mut path = PathBuf::from(p);
223
- path.push("fish/config.d/rustup.fish");
+ path.push("fish/conf.d/rustup.fish");
224
path
225
});
226
227
let p1 = utils::home_dir().map(|mut path| {
228
- path.push(".config/fish/config.d/rustup.fish");
+ path.push(".config/fish/conf.d/rustup.fish");
229
230
231
0 commit comments