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.
1 parent e17cc7b commit 10caecbCopy full SHA for 10caecb
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
@@ -446,14 +446,14 @@ log::version()
446
local verbosity="${1:-}"
447
448
if [[ -z "$verbosity" ]]; then
449
- echo "${LOGGER_VERSION}"
+ echo "${PKG_VERSION}"
450
else
451
echo
452
echo "Bash-Bits Modular Bash Library"
453
- echoWhite "BB-Logger Module ${LOGGER_VERSION}"
+ echoWhite "BB-Logger Module ${PKG_VERSION}"
454
echo "Copyright © 2022-2023 Darren (Ragdata) Poulton"
455
- echo "Build: ${LOGGER_BUILD}"
456
- echo "Build Date: ${LOGGER_BUILD_DATE}"
+ echo "Build: ${PKG_BUILD}"
+ echo "Build Date: ${PKG_BUILD_DATE}"
457
458
fi
459
}
0 commit comments