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 0d0199f commit 17388deCopy full SHA for 17388de
utils/build-script-impl
@@ -3016,20 +3016,20 @@ for host in "${ALL_HOSTS[@]}"; do
3016
done
3017
3018
3019
-function printJSONTimestamp {
+function printJSONTimestamp() {
3020
local command=$1
3021
local kind=$2
3022
3023
echo "{ \"command\": \"${command}\", \"${kind}\": \"$(date "+%Y-%m-%dT%H:%M:%S")\" }"
3024
}
3025
3026
-function printJSONStartTimestamp {
+function printJSONStartTimestamp() {
3027
3028
3029
printJSONTimestamp ${command} "start"
3030
3031
3032
-function printJSONEndTimestamp {
+function printJSONEndTimestamp() {
3033
3034
3035
printJSONTimestamp ${command} "end"
0 commit comments