Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | shellcheck: Fix SC2059 issue | Mario Trangoni | 2021-01-31 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | See, $ find . -name "*.sh" | xargs shellcheck -i SC2059 In ./version.sh line 34: printf "${VER}" ^------^ SC2059: Don't use variables in the printf format string. Use printf '..%s..' "$foo". For more information: https://www.shellcheck.net/wiki/SC2059 -- Don't use variables in the printf... Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com> | ||||
* | Make nxagent process aware of its current NX'ish version. | Mike Gabriel | 2015-02-17 | 1 | -0/+34 |
This feature copies the way how X.Org version string and number are propagated at build time. First use case: if people start nxagent, it reports its version number on stderr. This is about being human-friendly. Second use case: None, so far. But it will now be easy to use the NXAGENT_VERSION_STRING in later feature add-ons. |