Tina Müller (tinita)
Tina Müller (tinita)
How is checking a relative path supposed to work? I checked out your PR and tried this but it didn't tidy the file and gave me an error: ``` #...
> Removing cd to root directory allows to always specify relative path from current working directory, which is convenient, because script is mostly run from root directory in both git...
I would suggest to create an extra commit for the fix regarding the local `cpanfile_dir`, and change the description of the original commit. As far as I understand, the original...
The CI problem with a missing codecovbash popped up recently already, and I don't know what's going wrong there. A rerun usually fixes it.
For the record: Here is the output of the failing CI: https://github.com/os-autoinst/os-autoinst/runs/8112979508?check_suite_focus=true#step:3:82 ``` File 'repomd.xml' from repository 'openSUSE-Tumbleweed-Update' is unsigned, continue? [yes/no] (no): no error] Warning: Skipping repository 'openSUSE-Tumbleweed-Update' because...
Maybe you want to update this PR now after #2157 has been merged? Thanks!
The plain scalar `08063075` should not be interpreted as an integer because the specification for integers does not allow leading zeros: http://yaml.org/type/int.html (Spec for YAML 1.1 int) http://yaml.org/spec/1.2/spec.html#id2805071 (10.3.2. Tag...
If I read the related issues https://github.com/cloudtools/troposphere/issues/994 and https://github.com/awslabs/aws-cfn-template-flip/issues/41 correctly, the issues have been resolved there, so I guess this can be closed.
@justin8 if the string `"012345"` is dumped without quotes, then this is indeed a bug. In this thread and the related issues I only saw examples including digits greater than...
Actually, looking at the regex for int/float in YAML 1.2, it allows leading zeros. http://yaml.org/spec/1.2/spec.html#id2805071 10.3.2. Tag Resolution * `[-+]? [0-9]+` int * `[-+]? ( \. [0-9]+ | [0-9]+ (...