Version annotated: | 0.0.9-1 |
Comments: |
% nl -ba < getversion 62 generate_version_string_from_dir() { 63 # munin-c- is "9" chars, not 7 as munin- is. 64 basename $(pwd) | grep -e '^munin-c' | cut -c9- 65 } 66 67 if [ -s "RELEASE" ]; then 68 cat RELEASE 69 elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then 70 generate_version_string 71 elif [ ! -z "$(generate_version_string_from_dir)" ]; then 72 generate_version_string_from_dir 73 else 74 echo "unknown" 75 fi Left build uses "0.0.9", right build uses "unknown"; that string is 2 bytes longer, which explains all other differences. |
Our notes about issues affecting packages are stored in notes.git and are targeted at packages in Debian in 'unstable/amd64' (unless they say otherwise). |