From 0ee5f5218b2ade06b566244be3abc68763635f5b Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 30 Jan 2022 20:06:05 +0300 Subject: [PATCH] README-dev.md: adjust Python steps On Linux and macOS we can run these scripts directly because they have executable permissions and the shebang line points to a sane Python, but on Windows only God can help us. Better to write the slightly lamer invocation here with Python directly (even though the slash style will be different)... --- README-dev.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README-dev.md b/README-dev.md index 989c0a06..79eca287 100644 --- a/README-dev.md +++ b/README-dev.md @@ -27,8 +27,8 @@ $ pip install -r requirements.txt Then run the utility scripts to parse the schemas: ```console -$ ./util/generate-hugo-content.py -i ./data/iseal-core.csv --clean -d -$ ./util/generate-hugo-content.py -i data/fsc.csv -d +$ python ./util/generate-hugo-content.py -i ./data/iseal-core.csv --clean -d +$ python ./util/generate-hugo-content.py -i data/fsc.csv -d ``` ### Node.js Setup