Open otaolafranc opened 8 months ago
The issue I ran into is that curl
is ignorant to the redirect to download the release binary, if you update the curl
incantation to account for the redirect with the -L
flag it'll download the package. Alternatively you could swap it out for wget
and change the line to work.
-L, --location Follow redirects
Which was roughly line 65 in the shell script.
curl -L -s -o "$input_path/15210-v1.5-4248.apk" "https://github.com/Trixarian/NetherSX2-patch/releases/download/0.0/15210-v1.5-4248.apk"
The other issue I ran into was that the xdelta3
binary was being made executable with an incantation that chmod
did not approve of, so I have to change line 53 to look like:
chmod a+x $p2f/lib/xdelta3
Then everything worked.
This was a bug and suckawha's solution is how you fix it. This has been fixed and will ship with 1.9 onward
Now im having this issue and even though i ran that chmod command manually, i still get the 'Permission denied' error msg
Hello, I am having issues with the linux script:
regards