From af45241b5316ccdd4658b736ef84b6c9f86535da Mon Sep 17 00:00:00 2001 From: Condorra Date: Sat, 30 Dec 2023 22:34:20 +1100 Subject: [PATCH] Fix punctuation in shell commands --- hugo-static/content/developer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hugo-static/content/developer.md b/hugo-static/content/developer.md index 2e72bd7..1a6bbc8 100644 --- a/hugo-static/content/developer.md +++ b/hugo-static/content/developer.md @@ -51,8 +51,8 @@ the LICENSE file) as the other code in the repository you are contributing to. * Setup postgresql. See [the Postgres docs](https://www.postgresql.org/docs/current/tutorial-install.html) for help. Create a postgresql database (in these instructions, I assume you call it blast) and user (called `blast` in these instructions as well) for Blastmud. * Run `psql -d template1 <schema/schema.sql` as a user with access to create databases. * Install migra - `pip3 install migra`. -* Diff the blast DB from the temporary blast_schemaonly DB with `migra "postgres:///blast" "postgres:///blast_schemaonly" > /tmp/update.sql` -* Check `/tmp/update.sql` and if it looks good, apply it with `psql -U blast -d blast </tmp/update.sql` +* Diff the blast DB from the temporary blast_schemaonly DB with `migra "postgres:///blast" "postgres:///blast_schemaonly" > /tmp/update.sql` +* Check `/tmp/update.sql` and if it looks good, apply it with `psql -U blast -d blast