Skip to content

Commit

Permalink
Fix the millis() error (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
kigster authored Nov 15, 2022
1 parent dc8d78e commit d6b17f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.6
3.0.7
6 changes: 5 additions & 1 deletion init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export BASHMATIC_LIB="${BASHMATIC_HOME}/lib"
declare -a BASHMATIC_REQUIRED_LIBS

function __bashmatic.prerequisites() {
export BASHMATIC_REQUIRED_LIBS=( color util time output output-admonitions output-boxes output-utils )
export BASHMATIC_REQUIRED_LIBS=( time color util output output-admonitions output-boxes output-utils )
is-debug && not-quiet && echo
for lib in "${BASHMATIC_REQUIRED_LIBS[@]}"; do
file="${BASHMATIC_LIB}/${lib}.sh"
Expand Down Expand Up @@ -180,6 +180,10 @@ function __bashmatic.debug-conclusion() {

# shellcheck disable=SC2120
function __bashmatic.eval-library() {

source "${BASHMATIC_LIB}/time.sh"
source "${BASHMATIC_LIB}/util.sh"

local __bashmatic_start_time="$(millis)"

# LOAD ALL BASHMATIC SCRIPTS AT ONCE
Expand Down

0 comments on commit d6b17f2

Please sign in to comment.