Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: typo
  • Loading branch information
PawelKorsak committed Mar 24, 2026
commit df11a8db5d440db4af96e1f4c22a4d8a02ae6291
2 changes: 1 addition & 1 deletion candletool/src/md_cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ namespace mab
matchString.end() || std::find(matchString.begin(), matchString.end(), '\\') ==
matchString.end())
{
configFilePath = DEFAULT_CANDLETOOL_CONFIG_DIR / "/config/motors/" / configFilePath;
configFilePath = std::filesystem::path(DEFAULT_CANDLETOOL_CONFIG_DIR) / std::filesystem::path("/config/motors/") / configFilePath;
}

mINI::INIFile configFile(configFilePath);
Expand Down