Skip to content

Commit 77d0aee

Browse files
committed
chore: format file
1 parent cc69b6d commit 77d0aee

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

install.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@ folder="dabs"
44

55
version=$(python -c "import sys; print(sys.version_info[:])" 2>&1)
66
if [[ -z "$version" ]]; then
7-
echo "Python not found"
8-
exit 1
7+
echo "Python not found"
8+
exit 1
99
fi
1010

1111
major=$(echo "$version" | cut -d ',' -f 1 | tr -d '(')
1212
minor=$(echo "$version" | cut -d ',' -f 2)
1313

1414
if [[ $major -lt 3 || $minor -lt 9 ]]; then
15-
echo "Python 3.9 or higher is required"
16-
exit 1
15+
echo "Python 3.9 or higher is required"
16+
exit 1
1717
fi
1818

1919
cd $folder || exit
2020
pip install -r requirements.txt
21-
python main.py
21+
python main.py
22+

0 commit comments

Comments
 (0)