Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information