[chore] Fix type error in post-install
| @@ -135,7 +135,7 @@ function createDefaultFiles() { | |||
| 135 | function getMd5Hash(data) { | 135 | function getMd5Hash(data) { |
| 136 | return crypto | 136 | return crypto |
| 137 | .createHash('md5') | 137 | .createHash('md5') |
| 138 | .update(data) | 138 | .update(new Uint8Array(data)) |
| 139 | .digest('hex'); | 139 | .digest('hex'); |
| 140 | } | 140 | } |
| 141 | 141 | ||