We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98ab36d + 10caecb commit c5874eaCopy full SHA for c5874ea
2 files changed
.github/.version
@@ -0,0 +1,3 @@
1
+export PKG_VERSION="0.1.0"
2
+export PKG_BUILD="1001"
3
+export PKG_BUILD_DATE="20230813:1940"
src/bb-logger.sh
@@ -452,14 +452,14 @@ log::version()
452
local verbosity="${1:-}"
453
454
if [[ -z "$verbosity" ]]; then
455
- echo "${LOGGER_VERSION}"
+ echo "${PKG_VERSION}"
456
else
457
echo
458
echo "Bash-Bits Modular Bash Library"
459
- echoWhite "BB-Logger Module ${LOGGER_VERSION}"
+ echoWhite "BB-Logger Module ${PKG_VERSION}"
460
echo "Copyright © 2022-2023 Darren (Ragdata) Poulton"
461
- echo "Build: ${LOGGER_BUILD}"
462
- echo "Build Date: ${LOGGER_BUILD_DATE}"
+ echo "Build: ${PKG_BUILD}"
+ echo "Build Date: ${PKG_BUILD_DATE}"
463
464
fi
465
}
0 commit comments