You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
938a490 added tracking of originating file pathnames for each component. References (such as includes) from one component to another, such as ../../../roles/myrole/tasks/mytask.yml are currently handled via quite specific regexps, whereas we could just calculate the full path, clean it up via Pathname.cleanpath, and perform a reverse lookup (doesn't exist currently) to find the object. This would allow even crazy stuff like ../../../roles/myrole1/../myrole2 to work.
The text was updated successfully, but these errors were encountered:
938a490 added tracking of originating file pathnames for each component. References (such as includes) from one component to another, such as
../../../roles/myrole/tasks/mytask.yml
are currently handled via quite specific regexps, whereas we could just calculate the full path, clean it up viaPathname.cleanpath
, and perform a reverse lookup (doesn't exist currently) to find the object. This would allow even crazy stuff like../../../roles/myrole1/../myrole2
to work.The text was updated successfully, but these errors were encountered: