Commit 75600e5 1 parent d41c979 commit 75600e5 Copy full SHA for 75600e5
File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -449,10 +449,12 @@ export class Repository {
449
449
) ;
450
450
451
451
const statuses =
452
- ( await this . repository . getStatus ( {
453
- includeIgnored : true ,
454
- includeExternals : combineExternal ,
455
- checkRemoteChanges
452
+ ( await this . retryRun ( async ( ) => {
453
+ return await this . repository . getStatus ( {
454
+ includeIgnored : true ,
455
+ includeExternals : combineExternal ,
456
+ checkRemoteChanges
457
+ } ) ;
456
458
} ) ) || [ ] ;
457
459
458
460
const fileConfig = workspace . getConfiguration ( "files" , Uri . file ( this . root ) ) ;
Original file line number Diff line number Diff line change @@ -106,6 +106,9 @@ export class Svn {
106
106
args . push ( "--password" , options . password ) ;
107
107
}
108
108
109
+ // Force non interactive environment
110
+ args . push ( "--non-interactive" ) ;
111
+
109
112
let encoding = options . encoding || "utf8" ;
110
113
delete options . encoding ;
111
114
You can’t perform that action at this time.
0 commit comments