mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 10:49:33 -06:00
9 lines
242 B
Bash
9 lines
242 B
Bash
#!/bin/sh
|
|
|
|
echo 'module GF.Today (today,version) where' > GF/Today.hs
|
|
echo '{-# NOINLINE today #-}' >> GF/Today.hs
|
|
echo 'today,version :: String' >> GF/Today.hs
|
|
echo 'today = "'`date`'"' >> GF/Today.hs
|
|
echo 'version = "'$1'"' >> GF/Today.hs
|
|
|