Updating the Values.yaml for several services. Cleaned out proprietary data
[it/otf.git] / otf-frontend / addPug.js
1 const fs = require('fs');
2 const { execSync } = require('child_process');
3 const path = './ng-add-pug-loader.js';
4
5 try {
6     if (!fs.existsSync(path)) {
7         console.log('ng add ng-cli-pug-loader@0.1.7')
8         execSync('ng add ng-cli-pug-loader@0.1.7');
9     }
10     console.log('node ' + path);
11     execSync('node ' + path);
12
13 } catch (err) {
14     console.log(err);
15 }