diff --git a/tools/commands/make.js b/tools/commands/make.js index 1dd745fa1e..ebf83799ca 100644 --- a/tools/commands/make.js +++ b/tools/commands/make.js @@ -23,6 +23,7 @@ var CompileEgretEngine = (function () { var excludeList = [ FileUtil.escapePath(path.join(outputDir, "promise")), FileUtil.escapePath(path.join(outputDir, "resourcemanager")), + FileUtil.escapePath(path.join(outputDir, "assetsmanager")), FileUtil.escapePath(path.join(outputDir, "egret3d")), FileUtil.escapePath(path.join(outputDir, "egret-wasm")), FileUtil.escapePath(path.join(outputDir, "eui-wasm")), diff --git a/tools/commands/make.ts b/tools/commands/make.ts index a7a96b3085..777eb85ede 100644 --- a/tools/commands/make.ts +++ b/tools/commands/make.ts @@ -30,6 +30,7 @@ class CompileEgretEngine implements egret.Command { let excludeList = [ FileUtil.escapePath(path.join(outputDir, "promise")), FileUtil.escapePath(path.join(outputDir, "resourcemanager")), + FileUtil.escapePath(path.join(outputDir, "assetsmanager")), FileUtil.escapePath(path.join(outputDir, "egret3d")), FileUtil.escapePath(path.join(outputDir, "egret-wasm")), FileUtil.escapePath(path.join(outputDir, "eui-wasm")),