We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
pixi run
~
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pixi, using pixi --version.
pixi --version
[project] channels = ["https://prefix.dev/conda-forge"] name = "." platforms = ["linux-64"] [tasks] download_cifar = "curl -o cifar-10-python.tar.gz https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz"
Outputs:
❯ pixi run download_cifar ✨ Pixi task (download_cifar): curl -o cifar-10-python.tar.gz https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz Error: × The task failed to parse. task: 'curl -o cifar-10-python.tar.gz https://www.cs.toronto.edu/~kriz/ │ cifar-10-python.tar.gz ' error: 'Unexpected character. │ ~kriz/cifar-10-python.tar.gz │ ~'
A task will fail when it contains the ~ character. This is probably the same error as #727
The task works when the command is escaped (like in the referenced issue).
[project] channels = ["https://prefix.dev/conda-forge"] name = "." platforms = ["linux-64"] [tasks] download_cifar = "curl -o cifar-10-python.tar.gz \"https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz\""
run on version pixi 0.40.2
pixi 0.40.2
The task should work without escaping, or only escaping the tilde.
The text was updated successfully, but these errors were encountered:
thanks for reporting this! I will take a look
Sorry, something went wrong.
Related PR: denoland/deno_task_shell#128
Successfully merging a pull request may close this issue.
Checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pixi, using
pixi --version
.Reproducible example
Outputs:
Issue description
A task will fail when it contains the
~
character.This is probably the same error as #727
The task works when the command is escaped (like in the referenced issue).
run on version
pixi 0.40.2
Expected behavior
The task should work without escaping, or only escaping the tilde.
The text was updated successfully, but these errors were encountered: