You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The binary .tar.gz does not work on debian-buster (out of the box - still investigating - missing the right libgit2-1.x )
Trying to put tug, into a docker container, the go binary
$ bin/tug
bin/tug: error while loading shared libraries: libgit2.so.1.0: cannot open shared object file: No such file or directory
$ cat /etc/issue
Debian GNU/Linux 10 \n \l
The required binary seems installed.
$ sudo apt install libgit2-27
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgit2-27 is already the newest version (0.27.7+dfsg.1-0.2).
libgit2-27 set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
To Reproduce
Expected behavior
The binary from releases, is static and has all libs embedded.
Actual behavior
Seems the Linux binary is missing a static link for libgit2
docker run -ti --rm debian:latest
apt-get update && apt-get install -y curl
curl -LO https://github.com/b4nst/turbogit/releases/download/v2.0.0/turbogit_v2.0.0_amd64_linux.tar.gz
tar xvfz turbo*.tar.gz
bin/tug
Versions
tug: v2.0.0
OS: debian-buster in docker
The text was updated successfully, but these errors were encountered:
Yup, sorry for that I did not have time to work on tug recently. The release process is totally broken right now. Turbogit is already compatible with libgit2 1.1.x, I just have to bump the lib, rework the release process and clean everything. I will prioritize that and do it as soon as I find some time.
Describe the bug
Two issues:
1 . The documentation talks about a deb file for Debian/Ubuntu.
v1.3 and v2.0 do not have
.deb
files.https://github.com/b4nst/turbogit/releases
Trying to put tug, into a docker container, the go binary
The required binary seems installed.
To Reproduce
Expected behavior
The binary from releases, is static and has all libs embedded.
Actual behavior
Seems the Linux binary is missing a static link for
libgit2
Versions
The text was updated successfully, but these errors were encountered: