Skip to content

Commit 6c4c674

Browse files
committed
added error message to failed commits
1 parent 746f6ce commit 6c4c674

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# **v1.2.1**
2+
3+
## Bug Fixes
4+
5+
* Added better error logging for failed commits
6+
17
# **v1.2.0**
28

39
## What's New

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svn-scm",
33
"displayName": "SVN",
44
"description": "Integrated Subversion source control",
5-
"version": "1.2.0",
5+
"version": "1.2.1",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.17.0"

src/commands.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ export class SvnCommands {
186186
changesCommitted();
187187
repository.update();
188188
} catch (error) {
189-
window.showErrorMessage("Unable to commit");
189+
console.error(error);
190+
window.showErrorMessage(error);
190191
}
191192
}
192193

0 commit comments

Comments
 (0)