mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-28 12:45:45 +01:00
12 lines
171 B
JavaScript
12 lines
171 B
JavaScript
|
exports.default = async function(configuration) {
|
||
|
|
||
|
require("child_process").execSync(
|
||
|
`echo
|
||
|
"${configuration}"
|
||
|
`,
|
||
|
{
|
||
|
stdio: "inherit"
|
||
|
}
|
||
|
);
|
||
|
};
|