Our routine scan of all the packages found couple of potential issues. None of them look like high-priority, but some would be great to have fixed.
On top of these, we have also some issues with shell scripts. This can be probably simplified, but as I did not manage to come up with a proposed patch:
Error: SHELLCHECK_WARNING (CWE-398): [#def1]
/usr/bin/gpgrt-config:44:25: error[SC2066]: Since you double quoted this, it will not word split, and the loop will only run once.
- 42| # variant of get_attr for list (separated by ',')
- 43| get_attr_l () {
- 44|-> (IFS=', '; for x in "$(get_attr $1)"; do echo $x; done)
- 45| }
- 46|
There is a couple of more less important issues so I can either share them with you or try to prepare more patches.