Why does knife azure only list linux images?

When doing a

knife azure image list

only linux images are listed. This seems deliberate as the following code
shows:

    items.each do |image|
      if image.os == 'Linux'
        image_list << image.name.to_s

Why is this?

/Jeppe

On Thu, May 2, 2013 at 4:19 PM, Jeppe Nejsum Madsen jeppe@ingolfs.dkwrote:

When doing a

knife azure image list

only linux images are listed. This seems deliberate as the following code
shows:

    items.each do |image|
      if image.os == 'Linux'
        image_list << image.name.to_s

Why is this?

To answer my own question, it seems the knife-azure gem on rubygems is
1.0.2 wheres github contains 1.2.0 where this is fixed.

Any chance of getting an update to rubygems?

/Jeppe