11 lines
255 B
Bash
11 lines
255 B
Bash
#!/usr/bin/env bash
|
|
|
|
python3 -m venv .venv
|
|
source ./.venv/bin/activate
|
|
PATH_add .venv/bin
|
|
python3 -m pip install --upgrade pip
|
|
|
|
export BW_GIT_DEPLOY_CACHE=.cache/bw/git_deploy
|
|
export EXPERIMENTAL_UPLOAD_VIA_CAT=1
|
|
mkdir -p "$BW_GIT_DEPLOY_CACHE"
|
|
unset PS1
|