From c35a8edc37e0162a776ce87531c26ef400be17fc Mon Sep 17 00:00:00 2001 From: Giovanni Santini <81651399+San7o@users.noreply.github.com> Date: Mon, 6 Oct 2025 01:40:20 +0200 Subject: [PATCH] Correct parse.py example (#375) --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 73c0715..1fe1382 100644 --- a/README.md +++ b/README.md @@ -181,13 +181,12 @@ If you only want a specific artifact you can use one or more of the following ta For example, if you want to generate the `c` based artifact with extensions as shown earlier, you can use the following command: ```bash -./parse.py -c EXTENSIONS='rv*_i rv*_m' +./parse.py -c rv*_i rv*_m ``` Which will print the following log: ``` -Running with args : ['./parse.py', '-c', 'EXTENSIONS=rv*_i rv*_m'] -Extensions selected : ['EXTENSIONS=rv*_i rv*_m'] +Extensions selected : ['rv*_i', 'rv*_m'] INFO:: encoding.out.h generated successfully ```