Fix dotfiles module for Fish shell compatibility

This commit is contained in:
Koury Lape 2026-01-29 13:54:54 -05:00
parent e4606c51f3
commit 252d08ccec
No known key found for this signature in database
GPG Key ID: 6D4E8D151FDE8C59

View File

@ -99,10 +99,10 @@ resource "coder_app" "dotfiles" {
icon = "/icon/dotfiles.svg" icon = "/icon/dotfiles.svg"
order = var.order order = var.order
group = var.group group = var.group
command = templatefile("${path.module}/run.sh", { command = "/usr/bin/env bash -c ${shellquote(templatefile("${path.module}/run.sh", {
DOTFILES_URI : local.dotfiles_uri, DOTFILES_URI : local.dotfiles_uri,
DOTFILES_USER : local.user DOTFILES_USER : local.user
}) }))}"
} }
output "dotfiles_uri" { output "dotfiles_uri" {