Pete Davison

Results 103 comments of Pete Davison

@JamieEdge Your Taskfile works as intended for me with v3.28.0 on MacOS and Linux. ![image](https://github.com/go-task/task/assets/9294862/8dfb43a7-0952-4822-b499-1a1f9b4da0f6)

@JamieEdge I'm getting the same result either way

Hi @ssbarnea, there is no special variable for `TASK_TEMP_DIR`. However, the value should still be accessible as the env is passed through to any tasks: ```yaml version: '3' tasks: default:...

@andreynering yes, I've actually started writing up a proposal for breaking changes, but didn't have much time to work on it last week. I'll see if I can get it...

@andreynering @jaedle @zbindenren Apologies for the delay, I've been travelling for work a lot lately, but I had some time today to write up the [breaking changes proposal](https://github.com/go-task/task/discussions/1191). Comments/thoughts are...

> Maybe some additional thoughts: @zbindenren replied to your comments in the [proposal discussion](https://github.com/go-task/task/discussions/1191) to keep everything together.

This appears to be an issue with [mvdan/sh](https://github.com/mvdan/sh). See replication steps below: `service.sh`: ```bash #!/bin/bash for i in {1..5}; do sleep 1s && echo "$i"; done ``` `> bash -c...

I don't think this is to do with Task. As I said, this problem also exists when executing your command directly with `gosh` (the interpreter used by Task). Also, if...

Hi @Sopka, there is currently no built-in way to do this in Task. Unfortunately, the `rand` functions were removed from our templater to make it slimmer (since they rely on...

Hey both, just adding some ~quick~ thoughts while I have a bit of time: 1. I agree with @andreynering regarding the code. I like the general direction it's going in...