Skip to content

Commit faeaf97

Browse files
committed
fix suite.pm for windows
1 parent 6842a15 commit faeaf97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mysql-test/suite/plugins/suite.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (-d '../sql') {
88
my $src = "$::bindir/plugin/auth_pam/auth_pam_tool";
99
my $dst = "$::plugindir/auth_pam_tool_dir/auth_pam_tool";
1010
::mkpath( "$::plugindir/auth_pam_tool_dir");
11-
symlink $src, $dst or ::copy $src, $dst;
11+
eval { symlink $src, $dst } or ::copy $src, $dst;
1212
}
1313

1414
sub cassandra_running() {

0 commit comments

Comments
 (0)