Skip to content

Releases: pkgxdev/setup

v0.17.0

02 May 20:30
Compare
Choose a tag to compare
check indentation is tabs

v0.16.2

26 Apr 21:26
Compare
Choose a tag to compare
Fixes #144

v0.16.1

26 Apr 18:24
d254d26
Compare
Choose a tag to compare
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

13 Apr 14:17
6ab37b3
Compare
Choose a tag to compare
+libudev-dev to linux pre-reqs

v0.15.3

08 Apr 17:23
cd65bf7
Compare
Choose a tag to compare
fix access to `tea` itself in transitory mode (#146)

v0.15.2

17 Mar 21:50
d362110
Compare
Choose a tag to compare
fix bash installation for bash 3.2

v0.15.1

17 Mar 11:16
37f85ad
Compare
Choose a tag to compare
Don’t fail to install magic if SHELLRC no exist

v0.15.0

11 Feb 14:56
c907a10
Compare
Choose a tag to compare
Support disabling dev-envs with `srcroot: null`

v0.14.0

06 Feb 15:30
bc5244e
Compare
Choose a tag to compare
Allow specifying other pkgs; allow “chaste” mode (#137)

v0.13.2

05 Feb 14:23
bbf240a
Compare
Choose a tag to compare
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