mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-18 17:05:17 +00:00
fixed coule minor syntax errors
This commit is contained in:
parent
d4213a9be4
commit
b41fc05a1e
1 changed files with 5 additions and 4 deletions
|
|
@ -153,10 +153,11 @@ CloudServer.Minify={
|
|||
if(this._allowed.css ||
|
||||
this._allowed.js ||
|
||||
this._allowed.html){
|
||||
try
|
||||
var lMinify = require(CloudServer.LIBDIRSERVER+'/minify');
|
||||
catch(pError){
|
||||
console.log('Could not minify withou minify module\n +
|
||||
var lMinify;
|
||||
try{
|
||||
lMinify = require(CloudServer.LIBDIRSERVER+'/minify');
|
||||
}catch(pError){
|
||||
console.log('Could not minify withou minify module\n' +
|
||||
'for fixing type:\n' +
|
||||
'git submodule init\n' +
|
||||
'git submodule update');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue