Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2023 12 gg qa work #834

Merged
merged 5 commits into from
Dec 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8394,7 +8394,7 @@ private boolean runJekyll() throws IOException, InterruptedException {
log("");
log("and then investigate why Jekyll has failed");
}
log("Note: usual cases for Jekyll to fail are:");
log("Troubleshooting Note: usual cases for Jekyll to fail are:");
log("* A failure to produce a fragment that is already logged in the output above");
log("* A reference to a manually edited file that hasn't been provided");
if (SystemUtils.IS_OS_WINDOWS) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public List<ValidationMessage> publishInner(String source, String web, String da
// --- Rules for layout depend on publisher ------
boolean help = true;
JsonObject rules = getPublishingRules(pubSetup, id, p);
if (check(res, rules != null, "This website is not set up in its publish-setup.json to publish the IG with Package Id '"+id+"'")) {
if (check(res, rules != null, "This website does not have an entry in the layout rules in "+fPubIni.getAbsolutePath()+" to publish the IG with Package Id '"+id+"'")) {
String cURL = calcByRule(rules.str("url"), p);
if (cURL == null) {
cURL = url;
Expand Down
Loading