Releases: pkgxdev/setup
Releases · pkgxdev/setup
v0.17.0
check indentation is tabs
v0.16.2
Fixes #144
v0.16.1
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
v0.16.0
+libudev-dev to linux pre-reqs
v0.15.3
fix access to `tea` itself in transitory mode (#146)
v0.15.2
fix bash installation for bash 3.2
v0.15.1
Don’t fail to install magic if SHELLRC no exist
v0.15.0
Support disabling dev-envs with `srcroot: null`
v0.14.0
Allow specifying other pkgs; allow “chaste” mode (#137)
v0.13.2
we need to `exec $SHELL -i` (interactively) We install our magic to the interactive config file, and this is probs correct, so ensure we load it. Fixes https://github.com/teaxyz/cli/issues/358