Regarding 403 error while downloading: I had it too, so I am now downloading the file manually and then just put it beneath the PKGBUILD. Seems to work fine.
Re segmentation fault: I do have it too. It happens when you run upwork
while current directory is not in /opt/Upwork
.
So I've replaced the symlink /usr/bin/upwork -> /opt/Upwork/upwork
with a small bash script:
#!/bin/sh
cd /opt/Upwork
exec ./upwork "$@"
That way it works fine without any segfaults.
I'm sure that this should be done in the PKGBUILD
instead.
Pinned Comments