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