mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
added logging
This commit is contained in:
parent
21317b68fc
commit
c9c43ad628
1 changed files with 2 additions and 0 deletions
|
@ -122,6 +122,7 @@ module.exports = (grunt) ->
|
|||
|
||||
Helpers =
|
||||
installService: (service, callback = (error) ->) ->
|
||||
console.log "Installing #{service.name}"
|
||||
Helpers.cloneGitRepo service, (error) ->
|
||||
return callback(error) if error?
|
||||
Helpers.installNpmModules service, (error) ->
|
||||
|
@ -130,6 +131,7 @@ module.exports = (grunt) ->
|
|||
return callback(error) if error?
|
||||
Helpers.runGruntInstall service, (error) ->
|
||||
return callback(error) if error?
|
||||
console.log "Finished installing #{service.name}"
|
||||
callback()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue