Remove Node polyfills

This commit is contained in:
MattIPv4
2020-06-05 20:32:13 +01:00
parent 3c3161e924
commit 35962bd05e
2 changed files with 4 additions and 5 deletions

View File

@@ -148,7 +148,7 @@ THE SOFTWARE.
const contents = this.tarContents();
// Convert it to base64 string
const b64 = Buffer.from(contents).toString('base64');
const b64 = btoa(String.fromCharCode(...contents));
return `echo '${b64}' | base64 --decode > ${this.nginxDir}/${this.tarName}`;
},
setupCopy() {