Skip to content

Commit

Permalink
edt-validate показывает ошибки EDT, если код возврата не 0
Browse files Browse the repository at this point in the history
  • Loading branch information
artbear committed Jan 23, 2023
1 parent ca9c901 commit af355e6
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,13 @@

КонецПопытки;

Возврат КодВозврата = 0;
Результат = (КодВозврата = 0);
Если Не Результат Тогда
Лог.Ошибка("Возникла ошибка: код возврата %1,
|%2", КодВозврата, Команда.ПолучитьВывод());
КонецЕсли;

Возврат Результат;

КонецФункции

Expand Down

0 comments on commit af355e6

Please sign in to comment.