@Amikke > Parallel task execution (which is the default when you do dependsOn) is fundamentally incompatible with inputs. Since both of your tasks are started in parallel, there is a race for the task to get its input. Because of this, both tasks end up showing showing a quick pick, and one ends up cancelling the other. To work around this, add "dependsOrder": "sequence"
how'd they fuck this up. there's literally hundreds of make clones this is rite of passage shit
> Parallel task execution (which is the default when you do dependsOn) is fundamentally incompatible with inputs. Since both of your tasks are started in parallel, there is a race for the task to get its input. Because of this, both tasks end up showing showing a quick pick, and one ends up cancelling the other. To work around this, add "dependsOrder": "sequence"