1 Star 4 Fork 1

红日初升/劳资实在受不了github的龟速了

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
handleHosts.js 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
红日初升 提交于 2021-05-03 12:17 . 更新为强制推送
const fs = require("fs")
const handleError = require("./handleError")
const exec = require("util").promisify(require("child_process").exec)
const _writeFile = (data) => { //得到hosts后如何处理它
fs.writeFile("./hosts", data, { encoding: "utf-8" }, (err) => {
if (err) {
handleError(err)
}
console.log("successful!")
})
fs.readFile("./readme.template.md", { encoding: "utf-8" }, (err, template) => {
if (err) {
handleError(err)
}
template = template.replace("{{template:hosts}}", data)
fs.writeFile("./readme.md", template, { encoding: "utf-8" }, (err) => {
if (err) {
handleError(err)
}
})
})
}
const _pushToRepo = () => {
exec("git add .").then(() => {
return exec("git commit -m update")
}).then(() => {
return exec("git push -f origin")
}).then(() => {
return exec("git push -f github")
console.info("推送至了两个repo")
}).catch((err) => {
handleError(err)
})
}
const handleHosts = (data) => { //得到hosts后如何处理它
_writeFile(data)
_pushToRepo()
}
module.exports = handleHosts
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rscs/github-hosts.git
git@gitee.com:rscs/github-hosts.git
rscs
github-hosts
劳资实在受不了github的龟速了
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385