10 lines
No EOL
319 B
JavaScript
10 lines
No EOL
319 B
JavaScript
const { exec } = require('node:child_process');
|
|
var additional = process.env.INPUT_ADDITIONAL;
|
|
exec('apk add bash git ' + additional, (err, output) => {
|
|
console.log(output);
|
|
if (err) {
|
|
console.log("Something went wrong...");
|
|
} else {
|
|
console.log("Successfully installed packages!");
|
|
}
|
|
}) |