From 57e29666ceff602d2eaa78c77e97b85e2a76c30c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Nguyen?= Date: Mon, 18 Jul 2022 14:40:19 +0200 Subject: [PATCH] cores/microwatt: fix CLI instructions. --- cores/microwatt/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cores/microwatt/README.md b/cores/microwatt/README.md index 47f79ea..99e2061 100644 --- a/cores/microwatt/README.md +++ b/cores/microwatt/README.md @@ -17,7 +17,7 @@ git clone git@git.openpower.foundation:jfng/microwatt -b powerfv src ``` poetry shell -python microwatt.py -h +python -m microwatt -h exit ``` @@ -25,11 +25,11 @@ exit ### Run commands from a file ``` -python microwatt.py -c checks.pfv +python -m microwatt -c checks.pfv ``` ### Run commands interactively ``` -python microwatt.py -i +python -m microwatt -i ```