dune 267 B

1234567891011121314151617181920
  1. (library
  2. (name Lib)
  3. (libraries
  4. syndic
  5. yaml
  6. safepass
  7. angstrom
  8. )
  9. )
  10. ;(rule
  11. ; (target version.ml)
  12. ; (action
  13. ; (with-stdout-to %{target}
  14. ; (echo "let git_sha = \"foo")
  15. ; (run git rev-parse --short HEAD)
  16. ; (echo "bar\"")
  17. ; ))
  18. ; )