mirror of
https://github.com/winfsp/winfsp.git
synced 2026-05-06 01:34:37 -05:00
opt: cygfuse: fuse3
This commit is contained in:
Vendored
+9
-2
@@ -1,8 +1,15 @@
|
||||
cd "$(dirname "$0")"
|
||||
case $(uname -m) in
|
||||
x86_64)
|
||||
tar -C/ -xaf x64/fuse-2.8-*.tar.xz ;;
|
||||
tar -C/ -xaf x64/fuse-2.*.tar.xz
|
||||
tar -C/ -xaf x64/fuse-3.*.tar.xz
|
||||
;;
|
||||
i686)
|
||||
tar -C/ -xaf x86/fuse-2.*.tar.xz
|
||||
tar -C/ -xaf x86/fuse-3.*.tar.xz
|
||||
;;
|
||||
*)
|
||||
tar -C/ -xaf x86/fuse-2.8-*.tar.xz ;;
|
||||
echo unsupported architecture 1>&2
|
||||
exit 1
|
||||
esac
|
||||
echo FUSE for Cygwin installed.
|
||||
|
||||
Vendored
+7
-2
@@ -1,8 +1,13 @@
|
||||
cd "$(dirname "$0")"
|
||||
case $(uname -m) in
|
||||
x86_64)
|
||||
tar -taf x64/fuse-2.8-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
||||
tar -taf x64/fuse-2.*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
||||
tar -taf x64/fuse-3.*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
||||
i686)
|
||||
tar -taf x86/fuse-2.*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
||||
tar -taf x86/fuse-3.*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
||||
*)
|
||||
tar -taf x86/fuse-2.8-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
||||
echo unsupported architecture 1>&2
|
||||
exit 1
|
||||
esac
|
||||
echo FUSE for Cygwin uninstalled.
|
||||
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Reference in New Issue
Block a user