Open abey79 opened 2 months ago
Ah this is because of deno task shell. The first quotes are needed to escape the *
wildcard in your own shell. But then the *
is interpreted by deno task shell which will also use it as a wildcard which is why you see pixi.lock
. That is the result of the wildcard expansion.
But the 3 quotes are strange to me.. That needs a little more investigation.
Checks
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest version of pixi, using
pixi --version
.Reproducible example
Issue description
pixi requires several layers of quotes to avoid shell substitutions. The "correct" number of quote is 1 (e.g. when you directly call the target script). pixi 0.25.0 needs two. pixi 0.28.2 needs three.
Expected behavior