The z flag in the tar command in the install.sh script was on the wrong position. This caused the following error: tar: z: Cannot open: No such file or directory.
Making f the last flag before the filename and moving the z to the front fixes the issue.
The
z
flag in thetar
command in theinstall.sh
script was on the wrong position. This caused the following error:tar: z: Cannot open: No such file or directory
.Making
f
the last flag before the filename and moving thez
to the front fixes the issue.