From 4a652b8f9113131ebe2442628f2896cb488a4224 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Sun, 13 Dec 2015 13:17:56 -0800 Subject: [PATCH] dev: Fixup Makefile and testsign script --- Makefile | 4 ++-- scripts/testsign | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c040fbe8..3542f802 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ else endif test-proc-run: - go test $(TEST_FLAGS) $(BUILD_FLAGS) $(PREFIX)/proc -run $(RUN) + go test $(TEST_FLAGS) $(BUILD_FLAGS) -test.run="$(RUN)" $(PREFIX)/proc test-integration-run: - go test $(TEST_FLAGS) $(BUILD_FLAGS) $(PREFIX)/service/test -run $(RUN) + go test $(TEST_FLAGS) $(BUILD_FLAGS) -test.run="$(RUN)" $(PREFIX)/service/test diff --git a/scripts/testsign b/scripts/testsign index 10cdab9c..7e8abd4b 100755 --- a/scripts/testsign +++ b/scripts/testsign @@ -1,3 +1,3 @@ #!/usr/bin/env bash codesign -s $CERT $1 -exec $1 +exec "$@"