Fix #200, add VERSION to template files

This commit is contained in:
Unknown 2014-05-28 00:06:31 -04:00
parent bcfa78b8b5
commit ff690fd976
7 changed files with 24 additions and 21 deletions

View file

@ -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,
}