fix(dogfood): Enable pipefail for startup_script (#6017)

This commit is contained in:
Mathias Fredriksson
2023-02-07 20:15:09 +02:00
committed by GitHub
parent a5f3f02ef8
commit c63dcf13c2

View File

@ -64,7 +64,7 @@ resource "coder_agent" "dev" {
login_before_ready = false
startup_script_timeout = 60
startup_script = <<-EOT
set -ex
set -eux -o pipefail
# install and start code-server
curl -fsSL https://code-server.dev/install.sh | sh -s -- --version 4.8.3
code-server --auth none --port 13337 &