blob: 15d08fd689741d998ac7d0ee4f3eaae6250feff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -euo pipefail
BOTTLENAME=Deepin-@runname@
APPVER=@pkgver@
EXEC_PATH="c:/Program Files/@runname@/@runname@.exe"
START_SHELL_PATH="/opt/deepinwine/tools/run_v4.sh"
export MIME_TYPE=""
export DEB_PACKAGE_NAME=@pkgname@
export APPRUN_CMD=deepin-wine6-stable
if [ -n "${EXEC_PATH}" ];then
exec "${START_SHELL_PATH}" "${BOTTLENAME}" "${APPVER}" "${EXEC_PATH}" "$@" || exit $?
else
exec "${START_SHELL_PATH}" "${BOTTLENAME}" "${APPVER}" "uninstaller.exe" "$@" || exit $?
fi
|