We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9aa7168 commit 6ac0888Copy full SHA for 6ac0888
install.sh
@@ -424,8 +424,14 @@ joinmarket_install ()
424
reqs+=',test'
425
fi
426
427
- if [ "$with_jmvenv" == 1 ]; then pip_command=pip; else pip_command=pip3; fi
428
- $pip_command install -e ".[${reqs}]" || return 1
+ if [ "$with_jmvenv" == 1 ]; then
+ # shellcheck source=/dev/null
429
+ source "${jm_source}/jmvenv/bin/activate" || return 1
430
+ fi
431
+ pip3 install -e ".[${reqs}]" || return 1
432
433
+ deactivate
434
435
436
if [[ ${with_qt} == "1" ]]; then
437
if [[ -d ~/.local/share/icons ]] && [[ -d ~/.local/share/applications ]]; then
0 commit comments