10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-19 19:52:15 +02:00
quantum_package/ocaml/create_git_sha1.sh

13 lines
295 B
Bash
Raw Normal View History

2015-12-07 22:03:33 +01:00
#!/bin/bash
SHA1=$(git log -1 | head -1 | cut -d ' ' -f 2)
2015-12-08 14:40:23 +01:00
DATE=$(git log -1 | grep Date | cut -d ':' -f 2-)
2015-12-07 22:03:33 +01:00
MESSAGE=$(git log -1 | tail -1)
cat << EOF > Git.ml
open Core.Std
let sha1 = "$SHA1" |> String.strip
let date = "$DATE" |> String.strip
let message = "$MESSAGE" |> String.strip
EOF