Skip to content

Commit

Permalink
Again
Browse files Browse the repository at this point in the history
  • Loading branch information
lkmccr20 committed Apr 16, 2024
1 parent 9a4cec4 commit 10b055c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions .actions/sheet-http/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32224,14 +32224,12 @@ 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;
const r = yield processUserOptions(sheetName, sheetJsonObj.useroptions);
console.log("useropt", r);
yield processUserOptions(sheetName, sheetJsonObj.useroptions);
}
}
// We always do meta last if needed
if (updateMeta) {
const r = yield processMetaData(sheetName, sheetJsonObj);
console.log("update meta", r);
yield processMetaData(sheetName, sheetJsonObj);
}
const settings = (0, settings_1.getSettings)();
// Purge cache after we're done
Expand Down Expand Up @@ -32342,7 +32340,7 @@ const makeServerCall = (fullUrl, dataObj) => __awaiter(void 0, void 0, void 0, f
console.log("🚀 ~ payload:", dataObj);
const s = (0, settings_1.getSettings)();
if (s.simulate) {
console.log(`\tdata being sent ${dataObj}`);
console.log(`\tSIMULATE IS ON: data being sent ${dataObj}`);
return {};
}
else {
Expand Down Expand Up @@ -32407,7 +32405,7 @@ const getSettings = () => {
apiKey: process.env["STAGING_API_KEY"],
sheetHttpUrl: "https://sheet-http.staging.roll20preflight.net",
repoName: repo,
simulate: true,
simulate: false,
};
}
else if (["master"].includes(branch)) {
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 10b055c

Please sign in to comment.