From dbd6a1c331147ac3ae19ed8d25303607a7086014 Mon Sep 17 00:00:00 2001 From: Thomas Johnson Date: Thu, 26 Dec 2024 14:54:07 -0800 Subject: [PATCH] fix: html.sh call to image.py is missing the --file flag The 7color html example calls `image.py` without the required `--file` flag. --- examples/7color/html/html.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/7color/html/html.sh b/examples/7color/html/html.sh index b3be43e7..0de84e12 100755 --- a/examples/7color/html/html.sh +++ b/examples/7color/html/html.sh @@ -4,4 +4,4 @@ CWD=`pwd` filename=$1 firefox --headless --screenshot --window-size=600,448 file://$CWD/$filename -../image.py screenshot.png +../image.py --file screenshot.png