Skip to content

Commit

Permalink
fix os-lib gotcha
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Mar 23, 2020
1 parent 5d923d0 commit d74adf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object DTUpToDate {
cmd.runVerbose git ("clean", "-fdX") // remove ignored files/folders
cmd.runVerbose git ("clean", "-fd")
cmd.runVerbose git ('reset, "--hard", "origin/master")
files.deleteAll(clonedDir / ".git/gc.log")
files.deleteAll(clonedDir / ".git" / "gc.log")
cmd.runVerbose git 'prune
}
} else
Expand Down

0 comments on commit d74adf3

Please sign in to comment.