Skip to content

Commit

Permalink
Trying again
Browse files Browse the repository at this point in the history
  • Loading branch information
lkmccr20 committed Apr 16, 2024
1 parent 1a4db6a commit 9a4cec4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .actions/sheet-http/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32224,15 +32224,18 @@ const processFiles = (sheetName, dataObj, sheetJsonObj) => __awaiter(void 0, voi
// (as we really have no way of knowing) without polling the server so might as well send
// we also know if sheet.json was touched we should do a meta update at end
updateMeta = true;
yield processUserOptions(sheetName, sheetJsonObj.useroptions);
const r = yield processUserOptions(sheetName, sheetJsonObj.useroptions);
console.log("useropt", r);
}
}
// We always do meta last if needed
if (updateMeta) {
yield processMetaData(sheetName, sheetJsonObj);
const r = yield processMetaData(sheetName, sheetJsonObj);
console.log("update meta", r);
}
const settings = (0, settings_1.getSettings)();
// Purge cache after we're done
console.log("Clearing cache on sheet-http");
yield makeServerCall(`${settings.sheetHttpUrl}/purge?path=${sheetName}&repo=${settings.repoName}`, {});
});
exports.processFiles = processFiles;
Expand Down
2 changes: 1 addition & 1 deletion Tri-Stat/sheet.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"authors": "John W.",
"roll20userid": "492849",
"preview": "Tri-Stat.png",
"instructions": "For use with Tri-Stat, and supports all die sizes from d4 to d20.",
"instructions": "For use with Tri-Stat, and supports all die sizes from d4 to d20..",
"legacy": true
}

0 comments on commit 9a4cec4

Please sign in to comment.