mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-24 17:32:29 -05:00
9 lines
173 B
Bash
9 lines
173 B
Bash
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
|
|
echo FUSE for Cygwin installed.
|