File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
* @edgardmessias Not check SVN version if folder not contains ".svn" folder
8
8
* @edgardmessias Fixed ignored folder for multifolder svn to work with Windows
9
+ * @JohnstonCode Possilbe fix for #67
9
10
10
11
# ** v1.4.0**
11
12
Original file line number Diff line number Diff line change 2
2
"name" : " svn-scm" ,
3
3
"displayName" : " SVN" ,
4
4
"description" : " Integrated Subversion source control" ,
5
- "version" : " 1.4.0 " ,
5
+ "version" : " 1.4.1 " ,
6
6
"publisher" : " johnstoncode" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.17.0"
Original file line number Diff line number Diff line change @@ -226,7 +226,10 @@ export class Repository {
226
226
throw new Error ( result . stderr ) ;
227
227
}
228
228
229
- const message = result . stdout . match ( / A t r e v i s i o n ( .* ) \. / i) [ 0 ] ;
229
+ const message = result . stdout
230
+ . trim ( )
231
+ . split ( / \r ? \n / )
232
+ . pop ( ) ;
230
233
231
234
return message ;
232
235
}
You can’t perform that action at this time.
0 commit comments