diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2020-11-22 19:01:49 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-11-22 18:29:55 -0800 |
commit | 1db800bf67fc80abee313381aac0528ee33103c9 (patch) | |
tree | f362a43cff6b7c5a45b4ce71fdbadf9f0d32e03e /docs/markdown/Continuous-Integration.md | |
parent | c2f647867e987a55738bb4cf7e8e55ea1e8b1dd5 (diff) | |
download | meson-1db800bf67fc80abee313381aac0528ee33103c9.zip meson-1db800bf67fc80abee313381aac0528ee33103c9.tar.gz meson-1db800bf67fc80abee313381aac0528ee33103c9.tar.bz2 |
doc: fix confusing use of "build" as a directory argument [skip ci]
In most places, we now refer to "builddir/" which is a lot less likely
to make people think it is a subcommand which needs to be used
literally.
This is a regression since commit 276d342ebaf859dd53e145ead3e98e2cebb360ab
due to the existence of new docs which were added later on, using the
wrong form.
Diffstat (limited to 'docs/markdown/Continuous-Integration.md')
-rw-r--r-- | docs/markdown/Continuous-Integration.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/markdown/Continuous-Integration.md b/docs/markdown/Continuous-Integration.md index 76a05a3..9a2391c 100644 --- a/docs/markdown/Continuous-Integration.md +++ b/docs/markdown/Continuous-Integration.md @@ -221,10 +221,10 @@ jobs: with: python-version: '3.x' - run: pip install meson ninja - - run: meson setup build + - run: meson setup builddir/ env: CC: gcc - - run: meson test -C build -v + - run: meson test -C builddir/ -v - uses: actions/upload-artifact@v1 if: failure() with: @@ -240,10 +240,10 @@ jobs: python-version: '3.x' - run: brew install gcc - run: pip install meson ninja - - run: meson setup build + - run: meson setup builddir/ env: CC: gcc - - run: meson test -C build -v + - run: meson test -C builddir/ -v - uses: actions/upload-artifact@v1 if: failure() with: @@ -258,10 +258,10 @@ jobs: with: python-version: '3.x' - run: pip install meson ninja - - run: meson setup build + - run: meson setup builddir/ env: CC: gcc - - run: meson test -C build -v + - run: meson test -C builddir/ -v - uses: actions/upload-artifact@v1 if: failure() with: |