libremesh / lime-sdk

LibreMesh software development kit
http://libremesh.org/
GNU General Public License v3.0
50 stars 36 forks source link

Remove break after option --update-feeds #27

Closed ilario closed 6 years ago

ilario commented 7 years ago

Currently cooker does not evaluate any option after "--update-feeds" because of break here.

case $1 in
[...]
    --update-feeds)
        update_feeds
        break

This can be fixed replacing it with shift. Is this correct @p4u?

p4u commented 6 years ago

Yes you'r right, break might be removed.

svalo commented 6 years ago

I'd like to take care of this, on which branch should I work?

ilario commented 6 years ago

Let's go for master, develop is place for building trunk (and is broken, see #35)