Skip to content

Commit 658670f

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

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev/plugin-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ error() { printf -- "** ERROR: %s\n" "$*" >&2; }
2020
fatal() { error "$@"; exit 1; }
2121

2222
here="$( 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

2525
PLUGIN_TESTS_OUTPUT_DIRECTORY="$tests_directory" "$here/setup-plugin-tests.sh"
2626
PLUGIN_TESTS_DIRECTORY="$tests_directory" "$here/execute-plugin-tests.sh"

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)