Skip to content

Commit

Permalink
fix(parsing/cue): require all regular fields to be concrete
Browse files Browse the repository at this point in the history
  • Loading branch information
nkemnitz committed Oct 22, 2024
1 parent f514719 commit 2f775be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zetta_utils/parsing/cue.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def load(path):
tmp_f.write(contents)
tmp_f.flush()
# Do a quick check for valid CUE before proceeding any further
result = subprocess.run(["cue", "vet", local_tmp_path], check=True)
result = subprocess.run(["cue", "vet", "-c", local_tmp_path], check=True)
# Then, return file contents
result = load_local(local_tmp_path)
return result

0 comments on commit 2f775be

Please sign in to comment.