10 lines
153 B
Bash
10 lines
153 B
Bash
#! /bin/bash
|
|
|
|
. ~/.local/share/ffx.venv/bin/activate
|
|
pushd ~/.local/src/ffx/
|
|
git checkout "${1:-main}"
|
|
git pull
|
|
pip install --editable .
|
|
popd
|
|
deactivate
|