diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2021-03-25 17:44:36 +0000 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2021-03-25 13:50:12 -0400 |
commit | 56c03e1517bee43b6aa373c9e81beda1fd05b945 (patch) | |
tree | 473e12797dd15eb592d90bfdb403c8873bd2fed6 /docs/markdown | |
parent | 54767ab482eb30a843974e985d2998f5476c906c (diff) | |
download | meson-56c03e1517bee43b6aa373c9e81beda1fd05b945.zip meson-56c03e1517bee43b6aa373c9e81beda1fd05b945.tar.gz meson-56c03e1517bee43b6aa373c9e81beda1fd05b945.tar.bz2 |
docs: correct log upload paths.
SInce the build directory is `builddir/` it should be
`builddir/meson-logs/testlog.txt` to be uploaded.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Continuous-Integration.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/Continuous-Integration.md b/docs/markdown/Continuous-Integration.md index 46e7c29..f6ca89b 100644 --- a/docs/markdown/Continuous-Integration.md +++ b/docs/markdown/Continuous-Integration.md @@ -238,7 +238,7 @@ jobs: if: failure() with: name: Linux_Meson_Testlog - path: build/meson-logs/testlog.txt + path: builddir/meson-logs/testlog.txt macos: runs-on: macos-latest @@ -257,7 +257,7 @@ jobs: if: failure() with: name: MacOS_Meson_Testlog - path: build/meson-logs/testlog.txt + path: builddir/meson-logs/testlog.txt windows: runs-on: windows-latest @@ -275,5 +275,5 @@ jobs: if: failure() with: name: Windows_Meson_Testlog - path: build/meson-logs/testlog.txt + path: builddir/meson-logs/testlog.txt ``` |