1
0
Fork 0
mirror of https://github.com/dilllxd/gitfolio.git synced 2024-08-14 22:28:09 +00:00
gitfolio/update.js

13 lines
425 B
JavaScript
Raw Normal View History

const fs = require('fs');
const {updateHTML} = require('./populate');
fs.readFile("./dist/config.json", function (err , data) {
if (err) throw err;
data = JSON.parse(data);
var username = data[0].username;
if(!username || username == null){
console.log("username not found in config.json, please run build command before using update");
return;
}
updateHTML(username);
});