diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-12-12 10:54:51 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-12-12 10:54:53 -0500 |
commit | 54e11a39e14dce11b2869b4610eb175cb7d27b05 (patch) | |
tree | 386e866806f5a39b394206cacd8aaeeadf7dc513 | |
parent | cf2f4398769682cd5a0f024121a7dfd6c0aaa1ef (diff) | |
parent | 5096baf26b53db7fff9f4f61553ee225bc128d34 (diff) |
Merge #17735: ci: fix typo
5096baf26b53db7fff9f4f61553ee225bc128d34 build: fix typo (Harris)
Pull request description:
This PR fixes a typo in .github/workflows/ci.yml.
test_bticoin => test_bitcoin.
ACKs for top commit:
practicalswift:
ACK 5096baf26b53db7fff9f4f61553ee225bc128d34
Tree-SHA512: 478fb906adad493ae75872157d269e5060002878784968cfa44b23973b6fccb30cd643728d081a9ed20cff652a8784a33bc281ca5804935ed3c918200190cc9e
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9756ebba1d..dd1003d8e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: run: C:/vcpkg/vcpkg.exe integrate install - name: Build run: msbuild build_msvc\bitcoin.sln /m /v:n /p:Configuration=Release - - name: Run test_bticoin + - name: Run test_bitcoin shell: cmd run: src\test_bitcoin.exe -k stdout -e stdout 2> NUL - name: Run bench_bitcoin |