diff options
| author | Arun Isaac | 2025-11-24 00:57:12 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-24 01:33:27 +0000 |
| commit | 124c5c51c24b0eacba891da9c6a2e4bc9eb1937a (patch) | |
| tree | aef236cbb49a7591bddac49f888851dd0627428c /Makefile | |
| parent | d22f48630c08ef79fe25c580126a8d9bd373c522 (diff) | |
| download | ravanan-124c5c51c24b0eacba891da9c6a2e4bc9eb1937a.tar.gz ravanan-124c5c51c24b0eacba891da9c6a2e4bc9eb1937a.tar.lz ravanan-124c5c51c24b0eacba891da9c6a2e4bc9eb1937a.zip | |
reader: Resolve YAML inputs file type ambiguities.
Resolve YAML inputs file type ambiguities by reading them along with the workflow file and using the workflow input types to guide their type coercion.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index f4669d1..b37072e 100644 --- a/Makefile +++ b/Makefile @@ -44,8 +44,9 @@ sources = $(filter-out $(config_file), \ objects = $(sources:.scm=.go) $(config_file:.scm=.go) scripts = $(wildcard bin/*) tests = $(wildcard tests/*.scm) $(wildcard tests/work/*.scm) +test_data = $(wildcard test-data/*) distribute_files = $(sources) $(config_file_template) $(scripts) \ - $(tests) pre-inst-env guix.scm \ + $(tests) $(test_data) pre-inst-env guix.scm \ .guix/ravanan-package.scm Makefile \ COPYING README.md |
