pocopico / tinycore-redpill

GNU General Public License v3.0
2.18k stars 642 forks source link

Couldn't find bspatch in your $PATH #26

Open CodeNeedsCoffee opened 2 years ago

CodeNeedsCoffee commented 2 years ago

I'm currently trying the bare-metal install and after configuring my file and running "sudo ./rploader.sh build bromolow-7.0.1-42218" I get the following error: image

I did try bypass the runtime.sh and it get's further until it errors out here: image

I did try to manually install bsdiff and configured the BSPATCH_PATH env variable but still received the same error. Any help would be greatly appreciated, thanks!

WaaromZoMoeilijk commented 2 years ago

Did a tc@box:~$ grep -rnw ./ -e bspatch and got the following results

./rploader.sh:57:curl --location "https://raw.githubusercontent.com/pocopico/tinycore-redpill/main/bspatch" -O 
./rploader.sh:59:chmod 777 bspatch
./rploader.sh:60:sudo mv bspatch /usr/local/bin/

So this should work: curl --location "https://raw.githubusercontent.com/pocopico/tinycore-redpill/main/bspatch" -O && chmod 777 bspatch && sudo mv bspatch /usr/local/bin/

Edit: verified that it works around the automatic installation not working.

CodeNeedsCoffee commented 2 years ago

Worked like magic! Thanks!! 😊

Gavin123-code commented 2 years ago

Did a tc@box:~$ grep -rnw ./ -e bspatch and got the following results

./rploader.sh:57:curl --location "https://raw.githubusercontent.com/pocopico/tinycore-redpill/main/bspatch" -O 
./rploader.sh:59:chmod 777 bspatch
./rploader.sh:60:sudo mv bspatch /usr/local/bin/

So this should work: curl --location "https://raw.githubusercontent.com/pocopico/tinycore-redpill/main/bspatch" -O && chmod 777 bspatch && sudo mv bspatch /usr/local/bin/

Edit: verified that it works around the automatic installation not working.

Worked like magic for as well!

pocopico commented 2 years ago

Fixed on latest version

Gavin123-code commented 2 years ago

Fixed on latest version

idk why but i encountered this on 0.8.0.0/latest and this managed to fix it so really im satisfied with whatever fixes this issue