NETWAYS / check_system_basics

A Monitoring Plugin to test various basic operating system properties (on Linux for now)
GNU General Public License v2.0
6 stars 1 forks source link

Refactor version logic #47

Closed RincewindsHat closed 5 months ago

RincewindsHat commented 5 months ago

Previously the version was generated in the main function at runtime.

This patch use the cobra cmd native functionality to include it, which reduces the logic in this program. The version is not generated in the Makefile and linked into the program at compile time.

RincewindsHat commented 5 months ago

@martialblog what do you think about this?

RincewindsHat commented 5 months ago

good point, I did not think of that.

RincewindsHat commented 5 months ago

done