cygfuse: add 32-bit package

This commit is contained in:
Bill Zissimopoulos
2017-05-17 00:54:26 -07:00
parent 330d6e79f8
commit 6d5401d911
5 changed files with 27 additions and 7 deletions

View File

@ -1 +1,7 @@
tar -C/ -xaf fuse-2.8-*.tar.xz
cd "$(dirname "$0")"
case $(uname -m) in
x86_64)
tar -C/ -xaf x64/fuse-2.8-*.tar.xz ;;
*)
tar -C/ -xaf x86/fuse-2.8-*.tar.xz ;;
esac