Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKER_USER_LOGIN }}
password: ${{ secrets.DOCKER_USER_PASSWORD }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
} >> $GITHUB_ENV

- name: Build and push Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v6

- name: Create Release and Upload Assets
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: |
mysqltuner.pl
Expand Down
9 changes: 7 additions & 2 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -6088,7 +6088,8 @@ sub mysql_myisam {
)
)
{
my $myisam_table_escape = $myisam_table =~ s/\|/\`/gr;
my $myisam_table_escape = $myisam_table;
$myisam_table_escape =~ s/\|/\`/g;
$sql_mig =
"${sql_mig}-- InnoDB migration for $myisam_table_escape\nALTER TABLE $myisam_table_escape ENGINE=InnoDB;\n\n";
infoprint
Expand Down Expand Up @@ -10895,7 +10896,11 @@ sub which {
my $prog_name = shift;
my $path_string = shift;
my @path_array = split /:/, $ENV{'PATH'};
if ($is_win) { @path_array = split /;/, $ENV{'PATH'} =~ s/\\/\//gr; }
if ($is_win) {
my $path_env = $ENV{'PATH'};
$path_env =~ s/\\/\//g;
@path_array = split /;/, $path_env;
}

for my $path (@path_array) {
if ($is_win) {
Expand Down
Loading