gitea-aws/deploy.sh

11 lines
196 B
Bash
Raw Permalink Normal View History

2024-02-15 15:13:18 +01:00
#!/bin/bash
if ! command -v python3 &> /dev/null; then
if ! command -v python &> /dev/null; then
echo "Python3 is not installed"
else
python deploy.py
fi
else
python3 deploy.py
fi