Skip to content

v0.16.1

Choose a tag to compare

@github-actions github-actions released this 26 Apr 18:24
· 122 commits to main since this release
d254d26
switching to echo to /bin/echo for pantry install

While installing `tea` on `linux/amd64` hosts, the pantry sync returns
code 139, failing to complete the installation. While no such errors are
generated on `linux/arm64` systems.
The pantry sync is performed by passing `--sync --cd / echo` to the tea
CLI. The `echo` is a shell builtin, while `/bin/echo` is a binary.
Let's use the proper binary.

* replacing `echo` with `/bin/echo` in `install.sh` pantry sync command

Closes #148