Skip to content

Commit

Permalink
fix(cli): update fetch-asc output to use '/'
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Oct 13, 2024
1 parent 4e27feb commit d21ffb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion komorebic/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2598,7 +2598,7 @@ Stop-Process -Name:komorebi -ErrorAction SilentlyContinue
println!("Latest version of applications.yaml from https://github.com/LGUG2Z/komorebi-application-specific-configuration downloaded\n");
println!(
"You can add this to your komorebi.json static configuration file like this: \n\n\"app_specific_configuration_path\": \"{}\"",
output_file.display()
output_file.display().to_string().replace("\\", "/")
);
}
SubCommand::ApplicationSpecificConfigurationSchema => {
Expand Down

0 comments on commit d21ffb2

Please sign in to comment.