This commit is contained in:
Dmitry Boulytchev 2024-11-15 20:39:00 +03:00
parent 09810470fc
commit 751f55691c

View file

@ -11,11 +11,11 @@
version2.ml version2.ml
(progn (progn
(run echo let version = "\"") (run echo let version = "\"")
(run echo Version) (run echo "Version ")
(run git rev-parse --abbrev-ref HEAD) (run git rev-parse --abbrev-ref HEAD)
(run echo , " ") (run echo ", ")
(run git rev-parse --short HEAD) (run git rev-parse --short HEAD)
(run echo , " ") (run echo ", ")
(pipe-stdout (pipe-stdout
(run git rev-parse --verify HEAD) (run git rev-parse --verify HEAD)
(run git show --no-patch --no-notes --pretty='%cd')) (run git show --no-patch --no-notes --pretty='%cd'))