We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3dfff1e + 7081253 commit 610f6dcCopy full SHA for 610f6dc
1 file changed
scripts/get_default_keybindings/main.js
@@ -6,8 +6,10 @@ const { runTests } = require('@vscode/test-electron');
6
async function main() {
7
try {
8
// Make two empty directories to use to launch VS Code with the cleanest possible profile.
9
- const emptyDir1 = path.resolve(__dirname, 'empty1');
10
- const emptyDir2 = path.resolve(__dirname, 'empty2');
+ // The '../../' part is intended to shorten the path and was needed as a workaround.
+ // See: https://github.com/codebling/vs-code-default-keybindings/pull/222
11
+ const emptyDir1 = path.resolve(__dirname, '../../empty1');
12
+ const emptyDir2 = path.resolve(__dirname, '../../empty2');
13
await fsPromises.mkdir(emptyDir1, { recursive: true });
14
await fsPromises.mkdir(emptyDir2, { recursive: true });
15
0 commit comments