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 862ec56 commit 9957ce6Copy full SHA for 9957ce6
src/config.rs
@@ -54,14 +54,14 @@ impl<T: Into<String>> From<T> for OverrideFile {
54
if Path::new(&override_).is_absolute() {
55
Self {
56
toolchain: ToolchainSection {
57
- channel: Some(override_),
+ path: Some(PathBuf::from(override_)),
58
..Default::default()
59
},
60
}
61
} else {
62
63
64
- path: Some(PathBuf::from(override_)),
+ channel: Some(override_),
65
66
67
0 commit comments