Skip to content

Commit 575c477

Browse files
remove non-ASCII chars from runnable code
1 parent a70ffe6 commit 575c477

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push: { branches: ["main"] }
55
workflow_dispatch:
66
schedule:
7-
# 23:11 EST (UTC5) daily 04:11 UTC
7+
# 23:11 EST (UTC-5) daily -> 04:11 UTC
88
- cron: "11 4 * * *"
99

1010
permissions:

scripts/ensure_front_matter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
3333
Notes
3434
-----
35-
- Designed for Just the Docs exact-title parent/child matching.
35+
- Designed for Just the Docs' exact-title parent/child matching.
3636
- Safe on repeated runs (no behavioral drift, stable formatting).
3737
"""
3838

scripts/generate_linked_redirects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def main():
3535
"""
3636

3737
path.write_text(content.strip() + "\n", encoding="utf-8")
38-
print(f"Generated redirect: {path}")
38+
print(f"Generated redirect: {path}")
3939

4040

4141
if __name__ == "__main__":

scripts/import_sources.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ jq -c '.sources[]' "$MANIFEST" | while IFS= read -r row; do
7878

7979
url="https://github.com/${repo}.git"
8080

81-
echo "::group::Clone ${repo}@${ref} ${tmp} (sparse: ${sub})"
81+
echo "::group::Clone ${repo}@${ref} -> ${tmp} (sparse: ${sub})"
8282
rm -rf -- "${TMP_ABS:?}"
8383
git clone --quiet --filter=blob:none --no-checkout --depth 1 --branch "$ref" "$url" "$TMP_ABS"
8484
git -C "$TMP_ABS" sparse-checkout init --cone
8585
git -C "$TMP_ABS" sparse-checkout set "$sub"
8686
git -C "$TMP_ABS" checkout --quiet
8787
echo "::endgroup::"
8888

89-
echo "::group::Sync ${sub} ${mount}"
89+
echo "::group::Sync ${sub} -> ${mount}"
9090
rm -rf -- "${MOUNT_ABS:?}"
9191
mkdir -p "${MOUNT_ABS}"
9292

0 commit comments

Comments
 (0)