1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

preconditions cannot be in included taskfile

This commit is contained in:
Valentin Maerten
2025-02-23 12:40:55 +01:00
parent 37715657ae
commit dbe053277e
6 changed files with 37 additions and 16 deletions

View File

@@ -0,0 +1,8 @@
version: 3
includes:
included: included.yml
preconditions:
- sh: "[ 1 = 0 ]"
msg: "1 != 0 obviously!"

View File

@@ -0,0 +1,5 @@
version: 3
preconditions:
- sh: "[ 1 = 0 ]"
msg: "1 != 0 obviously!"