Skip to content

Commit

Permalink
Don't hardlink the workspace file during install-local
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Mar 28, 2024
1 parent 14867d7 commit b874df2
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions scripts/install-local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,6 @@ class InstallLocalRunner {
for (const project of this.projects) {
this.installProject(project.name);
}
//create a symlink of the workspace file at the root
try {
if (!fsExtra.pathExistsSync(`${cwd}/workspace.code-workspace`)) {
console.log(`Creating hardlink for 'workspace.code-workspace'`);
fsExtra.linkSync(`${cwd}/vscode-brightscript-language/workspace.code-workspace`, `${cwd}/workspace.code-workspace`);
}
} catch (e) {
console.error(e);
}
console.log('Done!');
}

Expand Down

0 comments on commit b874df2

Please sign in to comment.