2020-12-30 22:19:12 +01:00
|
|
|
exports.default = async function(configuration) {
|
2020-12-30 23:06:48 +01:00
|
|
|
console.log(`config:\n${JSON.stringify(configuration)}`)
|
2020-12-30 22:19:12 +01:00
|
|
|
|
|
|
|
require("child_process").execSync(
|
2020-12-30 23:06:48 +01:00
|
|
|
`echo 'Heyo!'`,
|
2020-12-30 22:19:12 +01:00
|
|
|
{
|
|
|
|
stdio: "inherit"
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|