When parsing octal permissions like 0755 leading zero is being cut, instead of converting to decimal. rust_yaml2 implements Yaml1.2 spec which not allows leading zero to be interpreted as octal. So use decimal as workaround 0644 -> 420 :)
When parsing octal permissions like 0755 leading zero is being cut, instead of converting to decimal.
rust_yaml2 implements Yaml1.2 spec which not allows leading zero to be interpreted as octal.
So use decimal as workaround 0644 -> 420 :)