log Shinobi version on start and show in Superuser panel+
parent
6b246c0a30
commit
934159786a
|
@ -2,12 +2,16 @@ var exec = require('child_process').exec
|
|||
module.exports = function(s,config,lang,app,io){
|
||||
var getRepositoryCommitId = function(callback){
|
||||
exec(`git rev-parse HEAD`,function(err,response){
|
||||
var data = response.toString()
|
||||
var isGitRespository = false
|
||||
if(data.indexOf('not a git repository') === -1){
|
||||
s.currentVersion = data
|
||||
isGitRespository = true
|
||||
s.systemLog(`Current Version : ${s.currentVersion}`)
|
||||
if(response){
|
||||
var data = response.toString()
|
||||
var isGitRespository = false
|
||||
if(data.indexOf('not a git repository') === -1){
|
||||
s.currentVersion = data
|
||||
isGitRespository = true
|
||||
s.systemLog(`Current Version : ${s.currentVersion}`)
|
||||
}
|
||||
}else if(err){
|
||||
s.debugLog('Git is not installed.')
|
||||
}
|
||||
if(callback)callback(!isGitRespository,data)
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue