5 lines
216 B
Bash
5 lines
216 B
Bash
|
curl https://api.github.com/repos/diaspora/diaspora/commits/master | \
|
||
|
jq '.commit.author.date' -r | \ # extracts the datetime w/o quotes
|
||
|
sed -e 's/\(.*\)T.*Z/"\1"/' > \ # removes time and adds quotes
|
||
|
version.nix
|