File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 44 * @copyright (C) 2021 Luke Zhang
55 */
66
7- import vscode from "vscode"
87import { escapeExecutablePath } from "./utils"
8+ import vscode from "vscode"
99
1010const getProcessingCommand = ( ) : string => {
1111 // Look for processing.processingPath, then processing.path, then default to processing-java
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const escapeExecutablePath = (pathName: string): string => {
99 return pathName
1010 }
1111
12- let isWindowsPath = / [ a - z A - Z ] : [ \\ \ /] (?: [ a - z A - Z 0 - 9 ] + [ \ \\/ ] ) * ( [ a - z A - Z 0 - 9 ] + ) / gu. test ( pathName )
12+ let isWindowsPath = / [ a - z A - Z ] : [ \\ / ] (?: [ a - z A - Z 0 - 9 ] + [ \\ / ] ) * ( [ a - z A - Z 0 - 9 ] + ) / gu. test ( pathName )
1313
1414 if ( ! / [ \\ / ] / gu. test ( pathName ) ) {
1515 isWindowsPath = process . platform === "win32"
You can’t perform that action at this time.
0 commit comments