This commit is contained in:
Liang Ding 2014-11-28 14:02:02 +08:00
parent e64eb89c2f
commit 58e54a1fa0
1 changed files with 3 additions and 3 deletions

View File

@ -421,17 +421,17 @@ var wide = {
case 'start-test':
case 'start-install':
case 'start-get':
bottomGroup.fillOutput('<pre>' + data.output + '</pre>');
bottomGroup.fillOutput(data.output);
break;
case 'go test':
case 'go install':
case 'go get':
bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + '<pre>' + data.output + '</pre>');
bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + data.output);
break;
case 'build':
bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + '<pre>' + data.output + '</pre>');
bottomGroup.fillOutput($('.bottom-window-group .output > div').html() + data.output);
if (data.lints) { // has build error
for (var i = 0; i < data.lints.length; i++) {