File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ error() { printf -- "** ERROR: %s\n" "$*" >&2; }
2020fatal () { error " $@ " ; exit 1; }
2121
2222here=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
23- tests_directory=" ${PLUGIN_TESTS_OUTPUT_DIRECTORY:= $(mktemp -d -t grpc-swift-protobuf-plugin-tests )} "
23+ tests_directory=" ${PLUGIN_TESTS_OUTPUT_DIRECTORY:= $(mktemp -d)} "
2424
2525PLUGIN_TESTS_OUTPUT_DIRECTORY=" $tests_directory " " $here /setup-plugin-tests.sh"
2626PLUGIN_TESTS_DIRECTORY=" $tests_directory " " $here /execute-plugin-tests.sh"
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ log() { printf -- "** %s\n" "$*" >&2; }
1919error () { printf -- " ** ERROR: %s\n" " $* " >&2 ; }
2020fatal () { error " $@ " ; exit 1; }
2121
22- output_directory=" ${PLUGIN_TESTS_OUTPUT_DIRECTORY:= $(mktemp -d -t grpc-swift-protobuf-plugin-tests )} "
22+ output_directory=" ${PLUGIN_TESTS_OUTPUT_DIRECTORY:= $(mktemp -d)} "
2323
2424here=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
2525grpc_swift_protobuf_directory=" $( readlink -f " ${here} /.." ) "
2626resources_directory=" $( readlink -f " ${grpc_swift_protobuf_directory} /IntegrationTests/PluginTests/Resources" ) "
27- scratch_directory=" $( mktemp -d -t grpc-swift-protobuf-plugin-tests-scratch ) "
27+ scratch_directory=" $( mktemp -d) "
2828
2929echo " Output directory: $output_directory "
3030echo " grpc-swift-protobuf directory: $grpc_swift_protobuf_directory "
You can’t perform that action at this time.
0 commit comments