Commit 2afb938
bin/cibuild
@@ -7,7 +7,7 @@ set -e
cd "$(dirname "$0")/.."
-echo $(date "+%H:%M:%S") "Started at…"
+echo [$(date "+%H:%M:%S")] "Started at…"
# GC customizations
export RUBY_GC_MALLOC_LIMIT=79000000
bin/lint
@@ -4,8 +4,8 @@ set -e
[ -z "$DEBUG" ] || set -x
-echo $(date "+%H:%M:%S") "==> Running setup…"
+echo [$(date "+%H:%M:%S")] "==> Running setup…"
bin/setup
-echo $(date "+%H:%M:%S") "==> Running linters…"
+echo [$(date "+%H:%M:%S")] "==> Running linters…"
bundle exec rake rubocop
bin/test
@@ -10,8 +10,8 @@ cd "$(dirname "$0")/.."
[ -z "$DEBUG" ] || set -x
-echo $(date "+%H:%M:%S") "==> Running setup…"
+echo [$(date "+%H:%M:%S")] "==> Running setup…"
bin/setup
-echo $(date "+%H:%M:%S") "==> Running tests…"
+echo [$(date "+%H:%M:%S")] "==> Running tests…"
bundle exec rake spec