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.
dagger/tests/plan/client/filesystem/read/fs/invalid/test.cue
Marcos Lilljedahl 66153c6194 Prevents files to be used as input of dagger.#FS
Errors out in the PreRun phase of the clientfilesystemreader task since
otherwise, dagger execution would hang
Fixes #1977

Signed-off-by: Marcos Lilljedahl <marcosnils@gmail.com>
2022-03-31 19:33:18 -03:00

12 lines
156 B
CUE

package main
import (
"dagger.io/dagger"
)
dagger.#Plan & {
client: filesystem: "../rootfs/test.txt": read: contents: dagger.#FS
actions: test: {
}
}