diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-08-11 11:03:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-08-11 11:03:11 -0400 |
commit | aa2c93b90b0745a07397538bf7802fba83096b68 (patch) | |
tree | e49568f08a159f0f8b66a11f95dc3c03a339b472 | |
parent | 8a0f530adffc4dbdb1afa065b214dd282f8bca8f (diff) | |
download | tor-aa2c93b90b0745a07397538bf7802fba83096b68.tar.gz tor-aa2c93b90b0745a07397538bf7802fba83096b68.zip |
Fix a pair of typos in ci-driver.sh.
-rwxr-xr-x | scripts/ci/ci-driver.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci/ci-driver.sh b/scripts/ci/ci-driver.sh index bede68baa8..a675335115 100755 --- a/scripts/ci/ci-driver.sh +++ b/scripts/ci/ci-driver.sh @@ -257,7 +257,7 @@ fi uname -a python -V || echo "no 'python' binary." -python3 -V || echo "no 'pythone' binary." +python3 -V || echo "no 'python3' binary." show_git_version Tor "${CI_SRCDIR}" if [[ "${STEM}" = "yes" ]]; then @@ -378,7 +378,7 @@ if [[ "${CHECK}" = "yes" ]]; then hooray "make check has succeeded." else error "Here are the contents of the test suite output:" - runcmd cat test_suite.log || true + runcmd cat test-suite.log || true FAILED_TESTS="${FAILED_TESTS} check" fi end_section "Check" |