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
I'm not sure if this is intended behavior or not, but couldn't find another issue on this so I wanted to at least raise the question.
Variables are seemingly ignored in the sources section, resulting in a bad checksum. To recreate, use the example Taskfile below and run the following commands:
task example
task example DIR=other_dir
Oh, and this project is awesome! Thanks for all the hard work!
Hello !
There are multiple issue in our example. First of all, you cannot override a variable like this. You need to use the default function like this
vars:
DIR: '{{default "packages" .DIR}}'
In our example, DIR is always 'packages'
The second thing is, we use https://github.com/mattn/go-zglob to match all files that match the patterm. I assume packages is a directory so you need to add a wildcard like :
Description
I'm not sure if this is intended behavior or not, but couldn't find another issue on this so I wanted to at least raise the question.
Variables are seemingly ignored in the
sources
section, resulting in a bad checksum. To recreate, use the example Taskfile below and run the following commands:Oh, and this project is awesome! Thanks for all the hard work!
Version
v3.40.1
Operating system
Ubuntu 24.04
Experiments Enabled
No response
Example Taskfile
The text was updated successfully, but these errors were encountered: