dotfiles/.chezmoiscripts/run_install_macchina.sh.tmpl

14 lines
756 B
Cheetah
Raw Normal View History

2023-10-10 20:22:26 +00:00
{{- if (lookPath "macchina" | not) -}}
#!/bin/bash
{{- if eq .chezmoi.os "darwin" }}
brew install macchina
{{- else if eq .chezmoi.os "linux" }}
{{- if eq .chezmoi.arch "amd64" }}
2023-10-11 06:28:12 +00:00
{{ if ne .chezmoi.uid "0" }} sudo {{ end -}}curl -LO /usr/local/bin/macchina https://github.com/Macchina-CLI/macchina/releases/download/{{ (gitHubLatestRelease "Macchina-CLI/macchina").TagName }}/macchina-linux-x86_64
2023-10-10 20:22:26 +00:00
{{- else if .chezmoi.arch "arm64" }}
2023-10-11 06:28:12 +00:00
{{ if ne .chezmoi.uid "0" }} sudo {{ end -}}curl -LO /usr/local/bin/macchina https://github.com/Macchina-CLI/macchina/releases/download/{{ (gitHubLatestRelease "Macchina-CLI/macchina").TagName }}/macchina-linux-aarch64
2023-10-10 20:22:26 +00:00
{{- end }}
chmod +x /usr/local/bin/macchina
{{- end }}
{{- end }}