Skip to content

Commit 6e66ff5

Browse files
authored
fix(dotfiles): handle failures in dotfiles installation (#387)
1 parent 19cdb78 commit 6e66ff5

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

dotfiles/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Under the hood, this module uses the [coder dotfiles](https://coder.com/docs/v2/
1919
module "dotfiles" {
2020
count = data.coder_workspace.me.start_count
2121
source = "registry.coder.com/modules/dotfiles/coder"
22-
version = "1.0.18"
22+
version = "1.0.29"
2323
agent_id = coder_agent.example.id
2424
}
2525
```
@@ -32,7 +32,7 @@ module "dotfiles" {
3232
module "dotfiles" {
3333
count = data.coder_workspace.me.start_count
3434
source = "registry.coder.com/modules/dotfiles/coder"
35-
version = "1.0.18"
35+
version = "1.0.29"
3636
agent_id = coder_agent.example.id
3737
}
3838
```
@@ -43,7 +43,7 @@ module "dotfiles" {
4343
module "dotfiles" {
4444
count = data.coder_workspace.me.start_count
4545
source = "registry.coder.com/modules/dotfiles/coder"
46-
version = "1.0.18"
46+
version = "1.0.29"
4747
agent_id = coder_agent.example.id
4848
user = "root"
4949
}
@@ -55,14 +55,14 @@ module "dotfiles" {
5555
module "dotfiles" {
5656
count = data.coder_workspace.me.start_count
5757
source = "registry.coder.com/modules/dotfiles/coder"
58-
version = "1.0.18"
58+
version = "1.0.29"
5959
agent_id = coder_agent.example.id
6060
}
6161
6262
module "dotfiles-root" {
6363
count = data.coder_workspace.me.start_count
6464
source = "registry.coder.com/modules/dotfiles/coder"
65-
version = "1.0.18"
65+
version = "1.0.29"
6666
agent_id = coder_agent.example.id
6767
user = "root"
6868
dotfiles_uri = module.dotfiles.dotfiles_uri
@@ -77,7 +77,7 @@ You can set a default dotfiles repository for all users by setting the `default_
7777
module "dotfiles" {
7878
count = data.coder_workspace.me.start_count
7979
source = "registry.coder.com/modules/dotfiles/coder"
80-
version = "1.0.18"
80+
version = "1.0.29"
8181
agent_id = coder_agent.example.id
8282
default_dotfiles_uri = "https://github.com/coder/dotfiles"
8383
}

dotfiles/run.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
25
DOTFILES_URI="${DOTFILES_URI}"
36
DOTFILES_USER="${DOTFILES_USER}"
47

0 commit comments

Comments
 (0)