@Malc @ConiKost - the builds should all now be present on the binaries page. Instead of adding yet another commit, I've adjusted the build script to filter Revision.inc to contain exactly [version-number][space] only thus:
Any trailing characters break the build process, indeed this is noted in the sources. And evidently it is not possible to save a file without a trailing line-feed using nano.
Bash:
head -n 1 Inc/Revision.inc | sed 's/[^0-9]//g' | tr -d '\n' | sed '$s/$/ /' > Inc/Revision2.inc; rm Inc/Revision.inc; mv Inc/Revision2.inc Inc/Revision.inc
Any trailing characters break the build process, indeed this is noted in the sources. And evidently it is not possible to save a file without a trailing line-feed using nano.
