File paths are not automatically resolved relative to the DRC script's path but relative to the current directory. At least not now (but good suggestion).
To make a file being read relative to your DRC script, use Ruby's __FILE__ constant which represents the path of the currently executed script:
Comments
Hi Man,
File paths are not automatically resolved relative to the DRC script's path but relative to the current directory. At least not now (but good suggestion).
To make a file being read relative to your DRC script, use Ruby's
__FILE__
constant which represents the path of the currently executed script:Matthias