Skip to content

Commit e0db436

Browse files
committed
Merge branch 'bugfix/windows-recursive-upload' into feature/new-toolbar
2 parents 828f21b + 64aabf7 commit e0db436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/serial/serial-bridge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const SerialBridge = {
9797
return path.posix.join(navigation, target)
9898
},
9999
getFullPath: (root, navigation, file) => {
100-
return path.posix.join(root, navigation, file)
100+
return path.posix.join(root, navigation.replaceAll(path.win32.sep, path.posix.sep), file.replaceAll(path.win32.sep, path.posix.sep))
101101
},
102102
getParentPath: (navigation) => {
103103
return path.posix.dirname(navigation)

0 commit comments

Comments
 (0)