diff --git a/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/NewConfiguration.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/NewConfiguration.vue index 910de21e9..e7949b17c 100644 --- a/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/NewConfiguration.vue +++ b/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/NewConfiguration.vue @@ -59,6 +59,9 @@ export default { if (folderPath[0] === '~') { folderPath = window.systemInfo.homeDir + window.systemInfo.pathSplit + folderPath.substring(1) } + if (folderPath.charAt(folderPath.length - 1) !== window.systemInfo.pathSplit) { + folderPath = folderPath + window.systemInfo.pathSplit; + } this.WorkingFolder = folderPath; configurator.readDir(folderPath, false)