This commit is contained in:
Marvin Buss 2020-04-01 00:04:10 +02:00
Родитель 07f4836d74
Коммит 175305f345
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -43,8 +43,8 @@ def main():
with open(parameters_file_path) as f:
parameters = json.load(f)
except FileNotFoundError:
print(f"::error::Could not find parameter file in {parameters_file_path}. Please provide a parameter file in your repository (e.g. .ml/.azure/workspace.json).")
raise AMLConfigurationException(f"Could not find parameter file in {parameters_file_path}. Please provide a parameter file in your repository (e.g. .ml/.azure/workspace.json).")
print(f"::error::Could not find parameter file in {parameters_file_path}. Please provide a parameter file in your repository (e.g. .cloud/.azure/workspace.json).")
raise AMLConfigurationException(f"Could not find parameter file in {parameters_file_path}. Please provide a parameter file in your repository (e.g. .cloud/.azure/workspace.json).")
# Checking provided parameters
print("::debug::Checking provided parameters")