From 97ee4f36e35e77adcb5e7b9937cd2d2952487ff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 7 May 2023 02:44:07 +0200 Subject: [PATCH] Fixed typo in legacy import test script --- .github/assets/legacy_import/test_legacy_import.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/assets/legacy_import/test_legacy_import.sh b/.github/assets/legacy_import/test_legacy_import.sh index 9ac76690..c130435e 100644 --- a/.github/assets/legacy_import/test_legacy_import.sh +++ b/.github/assets/legacy_import/test_legacy_import.sh @@ -38,7 +38,7 @@ do exit 1 fi # Import the SQL file into the database. The file pathes are relative to the current script location - mysql -u DB_USER --password=$DB_PASSWORD $DB_NAME < .github/assets/legacy_import/$SQL_FILE + mysql -u $DB_USER --password=$DB_PASSWORD $DB_NAME < .github/assets/legacy_import/$SQL_FILE # If the last command failed, exit the script if [ $? -ne 0 ]; then echo "Failed to import $SQL_FILE into database $DB_NAME"