Skip to content

Commit 4965012

Browse files
symlink generator.py from gir
1 parent 598362f commit 4965012

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- uses: actions/checkout@v2
8888
with:
8989
submodules: "recursive"
90-
- run: python3 ./gir/generator.py --yes ../
90+
- run: python3 ./generator.py --yes ./
9191
- run: git diff -R --exit-code
9292

9393
checker:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- working-directory: gir
2626
run: cargo build --release
2727
- run: cargo install rustdoc-stripper
28-
- run: python3 ./gir/generator.py --embed-docs --no-fmt --yes ../
28+
- run: python3 ./generator.py --embed-docs --no-fmt --yes ./
2929
- run: echo "DEST=$(if [ "$GITHUB_EVENT_NAME" == "release" ]; then echo 'stable'; else echo 'git'; fi)" >> ${GITHUB_ENV}
3030
- uses: actions-rs/cargo@v1
3131
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The bindings are composed of two parts:
5858
The automatic ones can be generated using the [`generator.py`](https://github.com/gtk-rs/gir/blob/master/generator.py) script
5959

6060
```bash
61-
python3 ./gir/generator.py
61+
python3 ./generator.py
6262
```
6363

6464
All the crates except `gtk4-macros` follow this structure

generator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./gir/generator.py

0 commit comments

Comments
 (0)