diff options
Diffstat (limited to 'version.erl')
-rwxr-xr-x | version.erl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/version.erl b/version.erl new file mode 100755 index 0000000..6e3c37e --- /dev/null +++ b/version.erl @@ -0,0 +1,8 @@ +#!/usr/bin/env escript +%% -*- erlang -*- + +main(_) -> + case file:consult("ebin/catlfish.app") of + {ok, [{application, catlfish, PropList}]} -> + io:format("~s~n", [proplists:get_value(vsn, PropList)]) + end. |