4 lines
232 B
Bash
Executable file
4 lines
232 B
Bash
Executable file
#!/usr/bin/env bash
|
|
source $HOME/.poetry/env
|
|
poetry add -vv $(grep -v ";" ./.venv/build_dependancy.txt | grep -v "*" | sed 's/==/@^/' )
|
|
# poetry export -f ./.venv/build_dependency.txt --dev | poetry run -- pip install -r /dev/stdin
|