1
0
mirror of https://github.com/element-hq/element-web.git synced 2025-11-26 21:23:26 +03:00

Fix artifact searching in redeployer

Indenting fail
This commit is contained in:
David Baker
2020-03-25 15:12:53 +00:00
parent c4bece1fd5
commit fea600ba0a

View File

@@ -133,9 +133,9 @@ def on_receive_buildkite_poke():
for artifact in artifacts_array: for artifact in artifacts_array:
if re.match(r"dist/.*.tar.gz", artifact['path']): if re.match(r"dist/.*.tar.gz", artifact['path']):
artifact_to_deploy = artifact artifact_to_deploy = artifact
if artifact_to_deploy is None: if artifact_to_deploy is None:
print("No suitable artifacts found") print("No suitable artifacts found")
return jsonify({}) return jsonify({})
# double paranoia check: make sure the artifact is on the right org too # double paranoia check: make sure the artifact is on the right org too
if required_api_prefix is not None and not artifact_to_deploy['url'].startswith(required_api_prefix): if required_api_prefix is not None and not artifact_to_deploy['url'].startswith(required_api_prefix):