1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-10-30 03:28:38 -05:00
Files
winfsp/opt/cygfuse/dist/install.sh
2018-07-25 21:23:29 -07:00

17 lines
308 B
Bash

cd "$(dirname "$0")"
case $(uname -m) in
x86_64)
tar -C/ -xaf x64/fuse-*.tar.xz
tar -C/ -xaf x64/fuse3-*.tar.xz
;;
i686)
tar -C/ -xaf x86/fuse-*.tar.xz
tar -C/ -xaf x86/fuse3-*.tar.xz
;;
*)
echo unsupported architecture 1>&2
exit 1
;;
esac
echo FUSE for Cygwin installed.