Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use printf rather than echo for escaping in cliv2 Makefile (#4559)
`cliv2/Makefile` is using echo in a way that relies on MacOS/zsh specifics, where `echo` will interpret escape sequences by default. This not the case everywhere. Using `echo -e` works on some platforms (zsh and bash) but it's not part of POSIX, so using `printf` is the most idiomatic way to do it.
- Loading branch information