summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominic Lemire <dominic.lemire@broadcom.com>2022-08-18 09:47:09 -0700
committerDominic Lemire <dominic.lemire@broadcom.com>2024-05-08 19:36:15 -0700
commit4c9a42522e4b4531d04466634c74b52fbdc82543 (patch)
tree2c80af80c6340e6eb2686ffc9abbd2df599afc8a
parent43420b33e466e530d403c0bbd582edad583f6e8e (diff)
downloadbase-4c9a42522e4b4531d04466634c74b52fbdc82543.tar.gz
bootanimation: fix typo in example
Bug: 29055299 Test: manual Change-Id: I4f821acb298f8d74d17afd0db7ba4eb7729620d2
-rw-r--r--cmds/bootanimation/FORMAT.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/bootanimation/FORMAT.md b/cmds/bootanimation/FORMAT.md
index 01e8fe13fdf6..da8331af1492 100644
--- a/cmds/bootanimation/FORMAT.md
+++ b/cmds/bootanimation/FORMAT.md
@@ -126,7 +126,7 @@ the system property `service.bootanim.exit` to a nonzero string.)
Use `zopflipng` if you have it, otherwise `pngcrush` will do. e.g.:
for fn in *.png ; do
- zopflipng -m ${fn}s ${fn}s.new && mv -f ${fn}s.new ${fn}
+ zopflipng -m ${fn} ${fn}.new && mv -f ${fn}.new ${fn}
# or: pngcrush -q ....
done