testing release system

This commit is contained in:
Joey Eamigh
2023-06-21 17:15:18 -04:00
parent 89262da6d3
commit 03dca844cb
9 changed files with 182 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
if command -v python3 &> /dev/null; then
if command -v python3 &>/dev/null; then
python="python3"
else
python="python"
@@ -12,4 +12,4 @@ $python -m venv .venv
source .venv/bin/activate
$python -m pip install --upgrade pip
$python -m pip install -r requirements.txt
$python -m pip install -r client/requirements.txt