AndronixApp / AndronixOrigin

This is the official repository for the back end of the Andronix app 🚀. Here you can know all the scripts you're installing 😎
https://andronix.app
MIT License
1.78k stars 342 forks source link

alpine.sh: No such file or directory #195

Open janeoa opened 1 year ago

janeoa commented 1 year ago

CLI only Alpine OS installation cannot find raw GitHub file

bash: alpine.sh://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Alpine/alpine.sh: No such file or directory

Slickbignick commented 1 year ago

The file does exist as you will see an alpine.sh file in your current working directory. The problem is in the syntax of the command from andronix. The given command in the app is

pkg update -y && pkg install wget curl proot tar -y && wget https://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Alpine/alpine.sh -O alpine.sh && chmod +x alpine.sh && bash alpine.sh://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Alpine/alpine.sh && chmod +x alpine.sh && bash alpine.sh

The actual command should be

pkg update -y && pkg install wget curl proot tar -y && wget https://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Installer/Alpine/alpine.sh -O alpine.sh && chmod +x alpine.sh && bash alpine.sh