Skip to content

Commit 31e4148

Browse files
committed
linting
1 parent da41f5f commit 31e4148

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension/noConfigDebugInit.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ export async function registerNoConfigDebug(
7777

7878
const noConfigScriptsDir = path.join(extPath, 'bundled', 'scripts', 'noConfigScripts');
7979
const pathSeparator = process.platform === 'win32' ? ';' : ':';
80-
80+
8181
// Check if the current PATH already ends with a path separator to avoid double separators
8282
const currentPath = process.env.PATH || '';
8383
const needsSeparator = currentPath.length > 0 && !currentPath.endsWith(pathSeparator);
8484
const pathValueToAppend = needsSeparator ? `${pathSeparator}${noConfigScriptsDir}` : noConfigScriptsDir;
85-
85+
8686
collection.append('PATH', pathValueToAppend);
8787

8888
const bundledDebugPath = path.join(extPath, 'bundled', 'libs', 'debugpy');

0 commit comments

Comments
 (0)