dev: Fixup Makefile and testsign script

This commit is contained in:
Derek Parker 2015-12-13 13:17:56 -08:00
parent b5cf1572f8
commit 4a652b8f91
2 changed files with 3 additions and 3 deletions

@ -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

@ -1,3 +1,3 @@
#!/usr/bin/env bash
codesign -s $CERT $1
exec $1
exec "$@"