-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.sh
More file actions
executable file
·60 lines (44 loc) · 764 Bytes
/
Copy pathtools.sh
File metadata and controls
executable file
·60 lines (44 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env zsh
set -euo pipefail
declare python=(
${=cpp:+compiledb compdb}
${=qdrant:+pytest requests qdrant-client}
)
function install {
python-install
}
function uninstall {
python-uninstall
}
function python-install {
for tool in ${@:-$python}
do
pip-install $tool
done
}
function python-uninstall {
for tool in ${@:-$python}
do
pip-uninstall $tool || :
done
}
function pip-install {
declare tool=$1
if ! whence -p $tool &>/dev/null
then
pip3 install --user $tool
fi
}
function pip-uninstall {
declare tool=$1
if declare dir && dir="$(whence -p $tool 2>/dev/null)" && [[ $dir == $HOME/.local/bin/* ]]
then
pip3 uninstall $tool
fi
}
if [[ $ZSH_EVAL_CONTEXT == toplevel ]] && (( $# == 0 ))
then
install
else
$@
fi