Skip to content

Commit

Permalink
chore: fix output name
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed Jun 2, 2022
1 parent 6ca4ef4 commit 13cd2fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const fs = require('fs');

const gaMultisigContract = fs.readFileSync(__dirname + '/../contracts/SimpleGAMultiSig.aes', 'utf-8');
fs.writeFileSync(__dirname + '/../gaMultisigContract.aes.js', `module.exports = \`\n${gaMultisigContract.replace(/`/g, "\\`")}\`;\n`, 'utf-8');
fs.writeFileSync(__dirname + '/../SimpleGAMultiSig.aes.js', `module.exports = \`\n${gaMultisigContract.replace(/`/g, "\\`")}\`;\n`, 'utf-8');

0 comments on commit 13cd2fb

Please sign in to comment.