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 2efcf96 commit 6260399Copy full SHA for 6260399
app/exec/extension/init.ts
@@ -239,7 +239,7 @@ export class ExtensionInit extends extBase.ExtensionBase<InitResult> {
239
trace.debug("Writing buffer for " + fileName);
240
const noLeadingFolderFileName = fileName.substr(fileName.indexOf("/"));
241
const fullPath = path.join(initPath, noLeadingFolderFileName);
242
- if (fullPath.endsWith("\\")) {
+ if (fullPath.endsWith("\\") || fullPath.endsWith("/")) {
243
// don't need to "write" the folders since they are handled by createFolderIfNotExists().
244
return;
245
}
0 commit comments