摘要: shelljs :https://www.npmjs.org/package/shelljs 要给可以替代Unix下shell脚本的库。require('shelljs/global');if (!which('git')) { echo('Sorry, this script requires git'); exit(1);}// Copy files to release dirmkdir('-p', 'out/Release');cp('-R', 'stuff/*', ' 阅读全文
posted @ 2014-02-25 09:28 卜海清 阅读(8135) 评论(1) 推荐(0)