64studio / pdk

64 Studio Platform Development Kit
GNU General Public License v2.0
20 stars 8 forks source link

Specifying a dir channel stanza should support local files #22

Closed obbardc closed 7 years ago

obbardc commented 7 years ago

The following code specifies an absolute path, which is okay, but it would be nice to support paths inside the workspace.

<?xml version="1.0" ?>
<channels>
    <!-- Our Backports -->
    <backports>
        <type>dir</type>
        <path>/home/chris/pdk/projects/pideck/64studio.com/backports/</path>
        <priority>10</priority>
    </backports>
</channels>

for example:

<?xml version="1.0" ?>
<channels>
    <!-- Our Backports -->
    <backports>
        <type>dir</type>
        <path>64studio.com/backports/</path>
        <priority>10</priority>
    </backports>
</channels>