playcanvas / playcanvas-rest-api-tools

A set of tools to use with the PlayCanvas REST API for common jobs such as downloading a build and archiving a project
MIT License
23 stars 7 forks source link

Fixed copyFileSync for Node 14+ #7

Closed yaustar closed 3 years ago

yaustar commented 3 years ago

Until later versions where it expects an integer: https://nodejs.org/api/fs.html#fs_fs_copyfilesync_src_dest_mode

Node 12 worked fine with the previous code but that was by luck as it didn't use a 3rd param. With Node 14+, it's used for a flag.

yaustar commented 3 years ago

Thanks Martin!