[windows] skip 'UNIX only'

# test that chezmoi dump warns when the config file has not been generated
chezmoi dump
cmp stdout golden/dump.json
stderr 'config file template has changed'

# test that chezmoi dump does not return an error when the config file template has been modified
chezmoi init
edit $CHEZMOICONFIGDIR${/}chezmoi.toml
chezmoi dump
cmp stdout golden/dump.json
! stderr .

-- golden/dump.json --
{
  ".file": {
    "type": "file",
    "name": ".file",
    "contents": "# contents of .file\n",
    "perm": 420
  }
}
-- home/user/.file --
# contents of .file
-- home/user/.local/share/chezmoi/.chezmoi.toml.tmpl --
[data]
-- home/user/.local/share/chezmoi/dot_file --
# contents of .file
