зеркало из
1
0
Форкнуть 0
This commit is contained in:
Garrett Serack 2020-03-30 12:39:59 -07:00
Родитель 68c3b04dcb
Коммит 6489c06446
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -8,7 +8,6 @@ import { Host, startSession } from '@azure-tools/autorest-extension-base';
import { codeModelSchema, CodeModel } from '@azure-tools/codemodel';
import { Checker } from './checker';
export async function processRequest(host: Host) {
const debug = await host.GetValue('debug') || false;
@ -21,6 +20,9 @@ export async function processRequest(host: Host) {
// go!
const result = plugin.process();
if (session.errorCount > 0) {
throw new Error(`${session.errorCount} errors occured -- cannot continue.`);
}
// output the model to the pipeline
if (options['emit-yaml-tags'] !== false) {

Просмотреть файл

@ -224,7 +224,7 @@ pipeline:
input: modelerfour/pre-namer/new-transform
modelerfour/identity:
input: modelerfour/pre-namer/new-transform
input: modelerfour/checker
modelerfour/emitter:
input: modelerfour/identity