set_location (location, root, path: STRING)
Changes location to point to path optionally rooted at the root location. Locations can be rooted at another location and specify a path relative to that or they can just be a path.
script remap_locations is set_location ('profiles', 'project', 'users') -- change the 'profiles' location 'users' at the root of the project set_location ('pictures', '', 'd:\data') -- look for pictures in 'd:\data' end