mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-25 09:52:23 -05:00
9 lines
261 B
Bash
9 lines
261 B
Bash
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 x86/fuse-2.8-*.tar.xz | sed -e '/\/$/d' -e 's/.*/\/&/' | xargs rm -f ;;
|
|
esac
|
|
echo FUSE for Cygwin uninstalled.
|