Closed matthiasrohmer closed 3 years ago
Deleting paths outside of the CWD is currently not supported. This is caused by del which only allows to do so if force is passed as an option.
del
force
It would be nice if passing this option to the delete would be supported.
delete
Try v3.1.0. You can do this.
[ { source: '/path/to/file.txt', options: { force: true, }, }, ];
Nice! Thanks a lot for the quick turn-around 🙂
Deleting paths outside of the CWD is currently not supported. This is caused by
del
which only allows to do so ifforce
is passed as an option.It would be nice if passing this option to the
delete
would be supported.