From 6783e7f74c6f867beb06702ccb220adbf12b2882 Mon Sep 17 00:00:00 2001 From: Maikel Date: Tue, 27 Sep 2022 12:37:08 +1000 Subject: [PATCH] Fix typo --- script/mirror_db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/mirror_db.sh b/script/mirror_db.sh index a9f1425839..c4ac1c8e89 100755 --- a/script/mirror_db.sh +++ b/script/mirror_db.sh @@ -36,7 +36,7 @@ if [ -s "$DB_CACHE_FILE" ]; then echo "Using cached dump '$DB_CACHE_FILE'." psql -h localhost -U ofn open_food_network_dev < "$DB_CACHE_FILE" else - echo "Downlowding dump to '$DB_CACHE_FILE'." + echo "Downloading dump to '$DB_CACHE_FILE'." ssh -C "$HOST" "pg_dump -h localhost -U $DB_USER $DB_DATABASE ${DB_OPTIONS[@]}"\ | tee "$DB_CACHE_FILE"\ | psql -h localhost -U ofn open_food_network_dev