element-theme icon indicating copy to clipboard operation
element-theme copied to clipboard

lib/task.js下的一个bug

Open z-hao opened this issue 7 years ago • 0 comments

lib/task.js 34行

fs.writeFileSync(varsPath, fs.readFileSync(path.resolve(process.cwd(), config.config)), 'utf-8')

应该是

fs.writeFileSync(varsPath, fs.readFileSync(path.resolve(process.cwd(), opts.config || config.config)), 'utf-8')

否则 et -c (--config) 设置了路径会无效并报错找不到config.config路径文件

z-hao avatar Oct 27 '17 06:10 z-hao