Wallet/fix-asn1.sh
Jean-Baptiste Dominguez acee3024a9 Quick fix for asn1
2018-08-16 17:51:08 +09:00

11 lines
No EOL
502 B
Bash
Executable file

#!/bin/bash
firstLine=`awk 'NR < 2 {print}' node_modules/asn1.js-rfc5280/index.js`
if [ "$firstLine" = "try {" ]; then
echo "var asn1 = require('asn1.js');" > node_modules/asn1.js-rfc5280/index.new.js
awk 'NR > 6 {print}' node_modules/asn1.js-rfc5280/index.js >> node_modules/asn1.js-rfc5280/index.new.js
rm node_modules/asn1.js-rfc5280/index.js
mv node_modules/asn1.js-rfc5280/index.new.js node_modules/asn1.js-rfc5280/index.js
echo "[log] node_modules/asn1.js-rfc5280/index.js fixed"
fi