This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Richard Jones aa268561bc
fixes issue where dagger hands when input directory does not exist
Signed-off-by: Richard Jones <richard@dagger.io>
2021-12-17 13:37:20 -07:00

17 lines
326 B
CUE

package main
import (
"alpha.dagger.io/europa/dagger/engine"
)
engine.#Plan & {
// should fail because path does not exist locally
inputs: directories: test: path: "./fasdfsdfs"
actions: verify: engine.#ReadFile & {
input: inputs.directories.test.contents
path: "test.txt"
} & {
contents: "local directory"
}
}