tractordev/apptron

bug: symlink creates wrong reference

Open

#252 opened on Dec 17, 2025

View on GitHub
 (1 comment) (0 reactions) (0 assignees)TypeScript (40 forks)github user discovery
good first issue

Repository metrics

Stars
 (1,200 stars)
PR merge metrics
 (PR metrics pending)

Description

The original issue was happening while trying to install:

  • python
  • pip
  • venv

But tracing down, its simple to reproduce:

$ ln -s /bin/true ./tru
$ ./tru 
/bin/sh: ./tru: not found

By checking the symlink its misses the root

$ ls -l ./tru
lrwxrwxrwx    0 root     root             8 Dec 17 07:52 ./tru -> bin/true

Contributor guide