Skip to content
Snippets Groups Projects
Commit 12062d1b authored by Jiří Rája's avatar Jiří Rája 🔥
Browse files

Merge branch '6-empty-repository-throws-error' into 'master'

Do not allow an empty repository

Closes #6

See merge request !7
parents 7e6ae3b0 4e893270
No related branches found
Tags 0.7.0
1 merge request!7Do not allow an empty repository
Pipeline #536676 passed with stage
in 18 seconds
......@@ -91,6 +91,10 @@ def main():
pp(available_actions())
return
if not image_repository:
print("Repository mustn't be empty")
return
parsed_image_variables = parse_image_variables(variables)
parsed_actions = parse_actions(actions)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment