desertbit / grml

A simple build automation tool written in Go
GNU General Public License v3.0
14 stars 2 forks source link

reload does not sort option arrays #10

Open skaldesh opened 2 years ago

skaldesh commented 2 years ago

Start with this grml.yaml file:

version: 1
project: test

options:
    runtime:
        - base
        - openvino
        - cuda
        - qt

Start grml and then change the grml.yaml to this:

version: 1
project: test

options:
    runtime:
        - new-runtime
        - base
        - openvino
        - cuda
        - qt

Do a reload inside grml --> The runtime is still at base