caches
This commit is contained in:
parent
1824fe3338
commit
c08d4a8fb8
1 changed files with 10 additions and 0 deletions
10
re.sh
10
re.sh
|
@ -14,6 +14,16 @@ activate() {
|
||||||
python3 --version
|
python3 --version
|
||||||
pip --version
|
pip --version
|
||||||
}
|
}
|
||||||
|
caches() {
|
||||||
|
set \
|
||||||
|
".cache/pip" \
|
||||||
|
".cache/uv" \
|
||||||
|
".local/share/pip" \
|
||||||
|
".local/share/uv"
|
||||||
|
for cache in "${@}"; do
|
||||||
|
"${1}" "${cache}"
|
||||||
|
done
|
||||||
|
}
|
||||||
deactivate() {
|
deactivate() {
|
||||||
echo
|
echo
|
||||||
echo "← ${VIRTUAL_ENV}"
|
echo "← ${VIRTUAL_ENV}"
|
||||||
|
|
Loading…
Reference in a new issue