ElementUI / element-theme

Theme generator cli tool for Element.
MIT License
492 stars 142 forks source link

lib/task.js下的一个bug #33

Open z-hao opened 6 years ago

z-hao commented 6 years ago

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路径文件