From 23d6c18c68f6bef52586b7b532c155c19d7b6647 Mon Sep 17 00:00:00 2001 From: Kalle Westerling Date: Thu, 6 Jun 2024 19:04:08 +0100 Subject: [PATCH] Switch from pg_restore to psql in macOS instructions Fixes #160 --- docs/setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup.md b/docs/setup.md index 0a817ac80..962afaa2b 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -267,7 +267,7 @@ Local setup steps have been tested on an M1 Mac and on an Ubuntu VM running on t -
macOS ``` - pg_restore -U postgres -d /path/to/file.dump + psql < /path/to/file.dump ```
-
Ubuntu