ohua-dev / ohua-core

Core Haskell library for the compiler
https://ohua-dev.github.io
Eclipse Public License 1.0
5 stars 0 forks source link

package.yaml fails with hpack 0.28.2 #7

Closed rahulmutt closed 6 years ago

rahulmutt commented 6 years ago
flags:
  debug:
    description: null
    manual: false
    default: false

hpack 0.28.2 fails with:

package.yaml: Error while parsing $.flags.debug.description - expected String, encountered Null

This was fixed by changing to:

flags:
  debug:
    description: ""
    manual: false
    default: false

I don't know what the intended default was, but I think it should be a string.

JustusAdam commented 6 years ago

Has been fixed. I forgot which commit though.