mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -06:00
7 lines
119 B
Bash
7 lines
119 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo -e "Collecting job start date"
|
||
|
|
||
|
start=$(date +%s%N)
|
||
|
echo "export GF_JOB_START=$start" >> "$BASH_ENV"
|