Skip to content

Commit acd8db9

Browse files
Fix CI
1 parent fdd6f39 commit acd8db9

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/rust.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@v4
21-
- name: Regen tables
22-
run: cd scripts && python3 unicode.py
23-
- name: Diff tables
24-
run: diff src/tables.rs scripts/tables.rs
2521
- name: Build
2622
run: cargo build --verbose
2723
- name: Run tests

scripts/unicode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ def fetch_open(filename: str, local_prefix: str = ""):
8484
localname,
8585
)
8686
try:
87-
return open(basename, encoding="utf-8")
87+
return open(localname, encoding="utf-8")
8888
except OSError:
89-
sys.stderr.write(f"cannot load {basename}")
89+
sys.stderr.write(f"cannot load {localname}")
9090
sys.exit(1)
9191

9292

0 commit comments

Comments
 (0)