Pete Davison
Pete Davison
Just curious on how this work is going? I've been messing around with the HTML templating support for Go and have found that I still can't quite get it to...
Also ran into this problem today. I'm running the emulator in a local MiniKube cluster behind TLS and I get a bunch of HTTPS/WSS errors. Is there anything blocking this...
@yuchenshi Gave testing this a go today. I managed to load up the UI over https without any issues, but I'm still having some internal connectivity problems. I've logged [a...
@Northburns ~the [`env` keyword](https://taskfile.dev/usage/#environment-variables) does not officially support the `sh` subkey~. To get around this, you can set a variable using `sh` and then set the environment variable using templating...
@andreynering @orenmazor Not sure why I put this as a comment... Please see https://github.com/go-task/task/pull/874
@aCLr unless I'm misunderstanding your message, you can achieve exactly what you are asking using @MrWormHole's suggested method. The [variables documentation](https://taskfile.dev/usage/#variables) describes this behaviour in the section: `sending parameters with...
@filbotblue `env` variables are made available to your _shell_ rather than the templating engine, so to echo the value, you would do `echo {{.FOO}} $BAR` instead of `echo {{.FOO}} {{.BAR}}`...
@aliculPix4D @marco-m-pix4d How did you get on with 3.12? Are you still having issues, or can this be closed?
I've just seen #665. I didn't realise someone had already made an attempt at this. However, since the comments there don't seem to have been addressed, I've made an attempt...
Dug into this a little bit as I also wanted to exclude the `vendor` directory from a pattern. However, it looks like Taskfile is already using a version of `zglob`...