Skip to content

Commit

Permalink
fix: change python to python3 in deploy.py (#1009)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoran-chen authored Feb 12, 2024
1 parent 9aa7b2a commit 6de5df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def generate_configs():
runtime_config_path = TEMP_DIR / 'runtime_config.json'
generate_config(helm_chart, 'templates/loculus-website-config.yaml', runtime_config_path, codespace_name)

run_command(['python', 'kubernetes/config-processor/config-processor.py', TEMP_DIR, output_dir], check=True)
run_command(['python3', 'kubernetes/config-processor/config-processor.py', TEMP_DIR, output_dir], check=True)

def generate_config(helm_chart, template, output_path, codespace_name=None):
helm_template_cmd = ['helm', 'template', 'name-does-not-matter', helm_chart, '--show-only', template]
Expand Down

0 comments on commit 6de5df9

Please sign in to comment.