mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-13 06:04:26 +02:00
add release job using AntOS build system
This commit is contained in:
@ -217,7 +217,11 @@ namespace OS {
|
||||
this.logger.error(ret.error);
|
||||
throw new Error(ret.error);
|
||||
}
|
||||
const dirs = ret.result.filter(e => e.type === "dir");
|
||||
let dirs = ret.result.filter(e => e.type === "dir");
|
||||
if(data.modules)
|
||||
{
|
||||
dirs = dirs.filter(e => data.modules.includes(e.filename));
|
||||
}
|
||||
for(let entry of dirs)
|
||||
{
|
||||
const build_file = `${entry.path}/build.json`.asFileHandle();
|
||||
|
Reference in New Issue
Block a user