How do I delete hidden files with a Pixi task #3174
Unanswered
mahesh-panchal
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The issue seems to be the I think I found the culprit: https://github.com/denoland/deno_task_shell/blob/9e884664e289bf74b50a8bdfa7930378fec91201/src/shell/execute.rs#L830 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm having issues writing some basic clean up tasks.
The tool I use creates a hidden folder
.nextflow
and some log files.nextflow.log
,.nextflow.log.1
, etc. I wrote a pixi task to try and clean it up.However running this task
pixi run clean-nf
, results in Pixi (Deno?) complaining that the glob doesn't match files although they are there. Running the commandrm -rf .nextflow* work/
inpixi shell
though works fine.Did I miss some message about special characters in tasks or something? How can I get this to work?
Beta Was this translation helpful? Give feedback.
All reactions