From f1bfbad12b6225ee9d22b46f41610dfd14480d7f Mon Sep 17 00:00:00 2001 From: retoor Date: Mon, 27 Jan 2025 18:40:33 +0000 Subject: [PATCH] fix: correct typo in README shell command from 'echo >' to 'echo' for proper markdown file creation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7f79fe..3b640ce 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ These are instructions for USING Dreamii, not to modify it. python3 -m venv .venv source .venv/bin/activate pip install git+https://molodetz.nl/retoor/dreamii.git -echo > "# My first dreamii site" > index.md +echo "# My first dreamii site" > index.md dreamii serve 7331 ```