dodo / node-unicodetable

unicode lookup table
MIT License
42 stars 34 forks source link

Fix postinstall and update scripts for windows #5

Closed arian closed 11 years ago

arian commented 11 years ago

It seems that using

"scripts": {"postinstall": "./install.js", "update":"./install.js"}

does not work on Windows.

Instead

"scripts": {"postinstall": "node install.js", "update":"node install.js"}

works on both Linux and Windows.

arian commented 11 years ago

screenshot from 2013-06-04 17 43 25

dodo commented 11 years ago

thanks