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 24cedca commit 55ea4b7Copy full SHA for 55ea4b7
nbgitpuller/static/js/index.js
@@ -49,9 +49,13 @@ gs.addHandler('error', function(data) {
49
gsv.setProgressError(true);
50
gsv.setTerminalVisibility(true);
51
if (data.output) {
52
- gsv.term.write(data.output);
+ const errorText= `Repository: ${gs.repo}\nBranch: ${gs.branch}\nRedirect URL: ${gs.redirectUrl}\n\n${data.output}\n`;
53
+ gsv.term.write(errorText);
54
+ gsv.setContainerError(
55
+ true,
56
+ errorText
57
+ );
58
}
- gsv.setContainerError(true, data.output);
59
});
60
gs.start();
61
0 commit comments