diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-28 00:06:31 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-28 00:06:31 -0400 |
commit | ff690fd9760e0cfb5ae9e49aecb7a201f7ca8304 (patch) | |
tree | 3e601c42e1fc8ff50df02bf04fb48680a031123e /modules | |
parent | bcfa78b8b559c638c40fa9d0c4ff08c6d8307e88 (diff) | |
download | gitea-ff690fd9760e0cfb5ae9e49aecb7a201f7ca8304.tar.gz gitea-ff690fd9760e0cfb5ae9e49aecb7a201f7ca8304.zip |
Fix #200, add VERSION to template files
Diffstat (limited to 'modules')
-rw-r--r-- | modules/bin/conf.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/bin/conf.go b/modules/bin/conf.go index 17af830a7f..6779f18fd6 100644 --- a/modules/bin/conf.go +++ b/modules/bin/conf.go @@ -3562,17 +3562,6 @@ func conf_supervisor_ini() ([]byte, error) { ) } -func conf_version() ([]byte, error) { - return bindata_read([]byte{ - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x00, 0xff, 0x32, 0xd0, - 0x33, 0xd6, 0x33, 0xd3, 0x33, 0x30, 0x35, 0x32, 0x55, 0x70, 0xcc, 0x29, - 0xc8, 0x48, 0x04, 0x04, 0x00, 0x00, 0xff, 0xff, 0x57, 0x04, 0x8d, 0x28, - 0x10, 0x00, 0x00, 0x00, - }, - "conf/VERSION", - ) -} - // Asset loads and returns the asset for the given name. // It returns an error if the asset could not be found or @@ -3616,5 +3605,4 @@ var _bindata = map[string] func() ([]byte, error) { "conf/license/MIT License": conf_license_mit_license, "conf/mysql.sql": conf_mysql_sql, "conf/supervisor.ini": conf_supervisor_ini, - "conf/VERSION": conf_version, } |