You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove old bundled config files in mac install upgrade (#145)
### Description
Remove old bundled config files in mac install upgrade. I thought `cp
-fR` would be sufficient, but that's not the case! I wasn't able to
understand why the functionality is how it is, but here's a simple
example to show the issue:
```sh
$ mkdir a && echo hello > a/test.txt && cp -R a b && cat b/test.txt
hello
$ echo goodbye > a/test.txt && cp -fR a b && cat b/test.txt
hello
$ cat a/test.txt
goodbye
```
### Checklist
- [ ] Created tests which fail without the change (if possible)
- [ ] Extended the README / documentation, if necessary
0 commit comments