Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix fmt
  • Loading branch information
matifali authored Sep 4, 2023
commit 08c875cb55ecec872a3a0fa7deddd6afd4cc000d
2 changes: 1 addition & 1 deletion cli/dotfiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func (r *RootCmd) dotfiles() *clibase.Cmd {
var dotfiles []string
for _, f := range files {
// make sure we do not copy `.git` directory
if strings.HasPrefix(f.Name(), ".") && f.Name() != ".git" { {
if strings.HasPrefix(f.Name(), ".") && f.Name() != ".git" {
dotfiles = append(dotfiles, f.Name())
}
}
Expand Down