Files
a13labs.infra/ansible/roles/linux_dev_station/templates/start-opencode.sh.j2
T

12 lines
257 B
Django/Jinja
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
{% if linux_dev_station_ssh_agent_enabled | bool %}
source "{{ linux_dev_station_scripts_dir }}/ssh-agent-start.sh"
{% endif %}
cd {{ linux_dev_station_workspace_dir }}
exec {{ linux_dev_station_opencode_command }}