Skip to content

Commit 540e2f1

Browse files
authored
Fix curl command for downloading mariadb setup (#1186)
1 parent fa83d19 commit 540e2f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ jobs:
152152
run: |
153153
set -ex
154154
sudo rm -R /var/lib/mysql/
155-
curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup > mariadb_repo_setup
156-
curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup.sha256 > mariadb_repo_setup.sha256
155+
curl -sSL https://downloads.mariadb.com/MariaDB/mariadb_repo_setup > mariadb_repo_setup
156+
curl -sSL https://downloads.mariadb.com/MariaDB/mariadb_repo_setup.sha256 > mariadb_repo_setup.sha256
157157
sha256sum --check mariadb_repo_setup.sha256
158158
sudo bash mariadb_repo_setup
159159
sudo apt-get update -qqy

0 commit comments

Comments
 (0)