mirror of
https://github.com/anidl/multi-downloader-nx.git
synced 2026-04-21 16:31:55 +00:00
[BUILD] Make sure PR folder is created
This commit is contained in:
parent
6ea04de7b4
commit
51285bfb16
2 changed files with 2 additions and 0 deletions
|
|
@ -86,6 +86,7 @@ async function buildBinary(buildType: BuildTypes, gui: boolean) {
|
||||||
fs.mkdirSync(`${buildDir}/config`);
|
fs.mkdirSync(`${buildDir}/config`);
|
||||||
fs.mkdirSync(`${buildDir}/videos`);
|
fs.mkdirSync(`${buildDir}/videos`);
|
||||||
fs.mkdirSync(`${buildDir}/widevine`);
|
fs.mkdirSync(`${buildDir}/widevine`);
|
||||||
|
fs.mkdirSync(`${buildDir}/playready`);
|
||||||
fs.copySync('./config/bin-path.yml', `${buildDir}/config/bin-path.yml`);
|
fs.copySync('./config/bin-path.yml', `${buildDir}/config/bin-path.yml`);
|
||||||
fs.copySync('./config/cli-defaults.yml', `${buildDir}/config/cli-defaults.yml`);
|
fs.copySync('./config/cli-defaults.yml', `${buildDir}/config/cli-defaults.yml`);
|
||||||
fs.copySync('./config/dir-path.yml', `${buildDir}/config/dir-path.yml`);
|
fs.copySync('./config/dir-path.yml', `${buildDir}/config/dir-path.yml`);
|
||||||
|
|
|
||||||
1
tsc.ts
1
tsc.ts
|
|
@ -42,6 +42,7 @@ const ignore = [
|
||||||
'./dev.js$',
|
'./dev.js$',
|
||||||
'*/node_modules/*',
|
'*/node_modules/*',
|
||||||
'./widevine/*',
|
'./widevine/*',
|
||||||
|
'./playready/*',
|
||||||
'./videos/*',
|
'./videos/*',
|
||||||
'./logs/*',
|
'./logs/*',
|
||||||
].map(a => a.replace(/\*/g, '[^]*').replace(/\.\//g, escapeRegExp(__dirname) + '/').replace(/\//g, path.sep === '\\' ? '\\\\' : '/')).map(a => new RegExp(a, 'i'));
|
].map(a => a.replace(/\*/g, '[^]*').replace(/\.\//g, escapeRegExp(__dirname) + '/').replace(/\//g, path.sep === '\\' ? '\\\\' : '/')).map(a => new RegExp(a, 'i'));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue