9c81a155c9
Fixes #1309 Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
16 lines
264 B
CUE
16 lines
264 B
CUE
package main
|
|
|
|
import (
|
|
"alpha.dagger.io/europa/dagger/engine"
|
|
)
|
|
|
|
engine.#Plan & {
|
|
inputs: directories: test: path: "."
|
|
actions: verify: engine.#ReadFile & {
|
|
input: inputs.directories.test.contents
|
|
path: "test.txt"
|
|
} & {
|
|
contents: "local directory"
|
|
}
|
|
}
|