mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 05:52:22 -04:00

https://forums.ankiweb.net/t/recent-anki-updates-bundle-id-change-disabling-app-nap-macos-anki-connect/65550
14 lines
320 B
Bash
Executable file
14 lines
320 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Build and install into the launcher venv
|
|
|
|
set -e
|
|
|
|
./build.sh
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
export VIRTUAL_ENV=$HOME/Library/Application\ Support/AnkiProgramFiles/.venv
|
|
else
|
|
export VIRTUAL_ENV=$HOME/.local/share/AnkiProgramFiles/.venv
|
|
fi
|
|
../../out/extracted/uv/uv pip install dist/*.whl
|
|
|