29 lines
864 B
Bash
Executable File
29 lines
864 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Anki bundles sip 5 generated typings that allow type checking Qt code when
|
|
# installed next to the original modules. Attempting to use them as a separate
|
|
# stubs distribution with MYPYPATH yielded a bunch of errors which I was not
|
|
# able to resolve. A solution that doesn't require modifying the python install
|
|
# would be welcome!
|
|
|
|
set -eo pipefail
|
|
|
|
TOOLS="$(cd "`dirname "$0"`"; pwd)"
|
|
modDir=$(python -c 'import PyQt5, sys, os; sys.stdout.write(os.path.dirname(sys.modules["PyQt5"].__file__))')
|
|
|
|
unameOut="$(uname -s)"
|
|
case "${unameOut}" in
|
|
CYGWIN*)
|
|
modDir="$(cygpath -u "${modDir}")"
|
|
;;
|
|
esac
|
|
|
|
cmd="rsync -a \"${TOOLS}/stubs/PyQt5/\" \"${modDir}/\""
|
|
|
|
if [[ "w${OS}" == "wWindows_NT" ]];
|
|
then
|
|
eval "${cmd}" > /dev/null 2>&1 || eval "${cmd}"
|
|
else
|
|
eval "${cmd}" > /dev/null 2>&1 || eval "${cmd}" || eval "sudo ${cmd}"
|
|
fi
|