From 9c973eb80b56b0b6bdd09c096295019ef72d5d2b Mon Sep 17 00:00:00 2001 From: Adam Wright Date: Mon, 20 Feb 2017 18:07:36 -0800 Subject: [PATCH] Switch back to verb_ing_ --- hooks/pre-push | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hooks/pre-push b/hooks/pre-push index ec30c24..1ebf660 100755 --- a/hooks/pre-push +++ b/hooks/pre-push @@ -88,13 +88,13 @@ if [ "$?" == 0 ]; then exit 1 fi - try_run "Build ... " cargo build --color=always - try_run "Run tests ... " cargo test --color=always - try_run "Run benches ... " cargo bench --color=always + try_run "Building ... " cargo build --color=always + try_run "Testing ... " cargo test --color=always + try_run "Benching ... " cargo bench --color=always - try_run "Build with tls ... " cargo build --color=always --features tls - try_run "Run tests with tls ... " cargo test --color=always --features tls - try_run "Run benches with tls ... " cargo bench --color=always --features tls + try_run "Building with tls ... " cargo build --color=always --features tls + try_run "Testing with tls ... " cargo test --color=always --features tls + try_run "Benching with tls ... " cargo bench --color=always --features tls fi exit $PREPUSH_RESULT