The build.sh script uses a special feature of bash that's not necessarily available in other shells, namely pipefail. But /bin/sh on Ubuntu isn't bash, but a stripped down shell named dash (and has been for quite some time). So the command given in the README fails. Instead of sh build.sh && sh install.sh, you need to do ./build.sh && ./install.sh (because the respective shebang is referencing bash), or explicitly bash build.sh && install.sh.
The build.sh script uses a special feature of
bashthat's not necessarily available in other shells, namelypipefail. But/bin/shon Ubuntu isn'tbash, but a stripped down shell nameddash(and has been for quite some time). So the command given in the README fails. Instead ofsh build.sh && sh install.sh, you need to do./build.sh && ./install.sh(because the respective shebang is referencingbash), or explicitlybash build.sh && install.sh.