-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcopyToExample.js
45 lines (39 loc) · 1.04 KB
/
copyToExample.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const fs = require('fs');
const path = require('path');
const examplesPath = 'examples';
const templatePath = path.join(
'_template',
'.github',
'workflows',
'edgio.yml'
);
const githubPath = path.join('.github');
const workflowsPath = path.join(githubPath, 'workflows');
fs.readdir(examplesPath, (err, examples) => {
if (err) {
console.error(err);
return;
}
examples.forEach((example) => {
const examplePath = path.join(examplesPath, example);
const exampleGithubPath = path.join(examplePath, githubPath);
const exampleWorkflowsPath = path.join(examplePath, workflowsPath);
fs.mkdir(exampleWorkflowsPath, { recursive: true }, (err) => {
if (err) {
console.error(err);
return;
}
if (!fs.existsSync(path.join(exampleWorkflowsPath, 'edgio.yml'))) {
fs.copyFile(
templatePath,
path.join(exampleWorkflowsPath, 'edgio.yml'),
(err) => {
if (err) {
console.error(err);
}
}
);
}
});
});
});