I have a file called cluster_schema.cue that I need to use inside a call to System.cmd. Right now I import its location as a module attribute, like so
@schema_location "priv/cluster_schema.cue"
System.cmd("cue", ["vet", file, @schema_location])
My issue is that whenever I modify that file, the changes don't seem to be applied - I tried deleting the build folder, recompiling, etc, nothing seems to work.
What am I missing?
Thanks,
Alex