Skip to content
Snippets Groups Projects
Commit 2f92f1fe authored by Andrei Jiroh Eugenio Halili's avatar Andrei Jiroh Eugenio Halili :school:
Browse files

Fix build script due to failing deploy


Context: python3.8-venv on Netlify build image doesn't
preinstalled, so we need to hack around on feature flags.

Signed-off-by: default avatarAndrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
parent 4eaa0026
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
python3 -m venv .venv
source .venv/bin/activate
if [[ $FF_DISABLE_VENV_USAGE_DURING_BUILD != "false" ]]; then
python3 -m venv .venv
source .venv/bin/activate
fi
pip3 install -r requirements.txt --upgrade
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment