Hi everyone! I’m stuck in the process of deploying my instance. On the step Install peertube: it refuses to go to ./peertube-latest, although the link is created with peertube permissions and owner. What should I do?
Found a solution with help of bash autocorrection.
Its not working under normal user with sudo rights, only root.
This command is wrong:
sudo -u peertube ln -s versions/peertube-${VERSION} ./peertube-latest
corrected command:
sudo -u peertube ln -s versions/peertube-${VERSION}/ peertube-latest