File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,10 @@ import * as crypto from "crypto";
66import { iconv } from "./vscodeModules" ;
77import { configuration } from "./helpers/configuration" ;
88
9- export const tempdir = path . join ( os . tmpdir ( ) , "vscode-svn" ) ;
9+ export const tempdir = path . join (
10+ os . tmpdir ( ) ,
11+ `vscode-svn-${ os . userInfo ( ) . uid . toString ( ) } `
12+ ) ;
1013
1114export async function createTempSvnRevisionFile (
1215 svnUri : Uri ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ let osTmpDir = os.tmpdir();
1414osTmpDir = osTmpDir [ 0 ] . toLowerCase ( ) + osTmpDir . substr ( 1 ) ;
1515const tempRevisionPath = join (
1616 osTmpDir ,
17- " vscode-svn" ,
17+ ` vscode-svn- ${ os . userInfo ( ) . uid . toString ( ) } ` ,
1818 "1181ae15a77d83ac0b077051dfed21ed" ,
1919 "r30_test.js"
2020) ;
You can’t perform that action at this time.
0 commit comments