mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-09-13 09:17:20 -07:00
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ "$1" = "remove" ] ; then
|
|
if [ -x /usr/sbin/update-binfmts ]; then
|
|
/usr/sbin/update-binfmts --package wine --remove wine /usr/bin/wine || true
|
|
fi
|
|
fi
|
|
|
|
|