Skip to content

Commit c8e71cb

Browse files
committed
remove custom temp dir prefix
1 parent 7105fb7 commit c8e71cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/setup-plugin-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ log() { printf -- "** %s\n" "$*" >&2; }
1919
error() { printf -- "** ERROR: %s\n" "$*" >&2; }
2020
fatal() { 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

2424
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2525
grpc_swift_protobuf_directory="$(readlink -f "${here}/..")"
2626
resources_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

2929
echo "Output directory: $output_directory"
3030
echo "grpc-swift-protobuf directory: $grpc_swift_protobuf_directory"

0 commit comments

Comments
 (0)