5 lines
216 B
Bash
Executable file
5 lines
216 B
Bash
Executable file
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
|