34 lines
771 B
JavaScript
34 lines
771 B
JavaScript
/*
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
* This file is part of standard which is released under MIT.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@scode.ovh>, May 2020
|
|
*/
|
|
|
|
/* eslint-disable max-len */
|
|
'use strict';
|
|
|
|
module.exports = `'use strict';
|
|
|
|
const https = require ('https');
|
|
const fs = require ('fs');
|
|
const { execSync: exec_sync } = require ('child_process');
|
|
|
|
const run_file = fs.createWriteStream ('.jenkins.run.js');
|
|
|
|
const [
|
|
,, ...args
|
|
] = process.argv;
|
|
|
|
run_file.on ('close', () => {
|
|
exec_sync (\`node .jenkins.run.js \${args.join (' ')}\`, { stdio: 'inherit' });
|
|
});
|
|
|
|
https.get (
|
|
'https://git.scode.ovh/Timo/standard/raw/branch/master/jenkins.run.js',
|
|
(msg) => {
|
|
msg.pipe (run_file);
|
|
}
|
|
);
|
|
`;
|