We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd70ac6 commit 23f9cadCopy full SHA for 23f9cad
src/api/index.ts
@@ -197,7 +197,11 @@ export class AtelierAPI {
197
}
198
199
if (data.result.status && data.result.status !== "") {
200
- outputChannel.appendLine(data.result.status);
+ const status: string = data.result.status;
201
+ outputChannel.appendLine(status);
202
+ if(status.endsWith("is marked as read only by source control hooks.")) {
203
+ vscode.window.showWarningMessage(status, { modal: true });
204
+ }
205
throw new Error(data.result.status);
206
207
if (data.status.summary) {
0 commit comments