Skip to content

Commit

Permalink
Fix missing step to create directory for wezterm
Browse files Browse the repository at this point in the history
Background #617
  • Loading branch information
kachick committed May 30, 2024
1 parent 894269a commit e574543
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/winit-conf/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,13 @@ func provisioners() []provisioner {
}

// As I understand it, unix like permission masks will work even in windows...
err = os.MkdirAll(filepath.Join(homePath, ".config", "wezterm"), 0750)
if err != nil {
log.Fatalf("Failed to create wezterm dotfiles directory: %+v", err)
}
err = os.MkdirAll(filepath.Join(homePath, ".config", "alacritty", "themes"), 0750)
if err != nil {
log.Fatalf("Failed to create dotfiles directory: %+v", err)
log.Fatalf("Failed to create alacritty dotfiles directory: %+v", err)
}
err = os.MkdirAll(filepath.Join(appdataPath, "alacritty"), 0750)
if err != nil {
Expand Down

0 comments on commit e574543

Please sign in to comment.