8 lines
91 B
Bash
8 lines
91 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
python -m pip install --upgrade pip
|
||
|
pip install poetry
|
||
|
poetry install
|