Skip to content

Commit

Permalink
Fix for execution time #536
Browse files Browse the repository at this point in the history
  • Loading branch information
to-bar committed Oct 7, 2019
1 parent 2714d21 commit d0117e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -590,4 +590,4 @@ remove_installed_packages "$INSTALLED_PACKAGES_FILE_PATH"

readonly END_TIME=$(date +%s)

echol "$(basename $0) finished in $(display_seconds $((START_TIME-END_TIME)))"
echol "$(basename $0) finished, execution time: $(display_seconds $((END_TIME-START_TIME)))"
Original file line number Diff line number Diff line change
Expand Up @@ -613,4 +613,4 @@ remove_installed_packages "$INSTALLED_PACKAGES_FILE_PATH"

readonly END_TIME=$(date +%s)

echol "$(basename $0) finished in $(display_seconds $((START_TIME-END_TIME)))"
echol "$(basename $0) finished, execution time: $(display_seconds $((END_TIME-START_TIME)))"

0 comments on commit d0117e1

Please sign in to comment.