Skip to content

Commit be57240

Browse files
committed
DOC: minor tweaks
1 parent 8d50078 commit be57240

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/how-to-guides/config-settings.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ Using a persistent build directory
6767
By default, ``meson-python`` uses a temporary build directory which is
6868
deleted when the build terminates. A persistent build directory allows
6969
faster incremental builds and to access build logs and intermediate
70-
build artifacts. The ``build-dir`` :ref:`config setting
71-
<reference-config-settings>` instructs ``meson-python`` to use a
72-
user-specified build directory which will not be deleted. For example:
70+
build artifacts. The :option:`build-dir` config setting can be used to
71+
build in a user-specified build directory which will not be deleted.
72+
For example:
7373

7474
.. tab-set::
7575

@@ -114,7 +114,7 @@ shows the detailed Meson setup log when the build fails:
114114
- name: Build the package
115115
run: python -m build --wheel -Cbuild-dir=build
116116
- name: Show meson-log.txt
117-
if: failure()
117+
if: ${{ failure() }}
118118
run: cat build/meson-logs/meson-log.txt
119119
120120
Replacing ``failure()`` with ``always()`` in the code above will

0 commit comments

Comments
 (0)