-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.sh
executable file
·15 lines (11 loc) · 960 Bytes
/
package.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
clear
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
source "${SCRIPT_DIR}"/build.env
echo current python is: `which python3 `
cd ~/Projekte/${PROJECT} || exit 1
# install/update necessary packages
python3 -m pip install --upgrade build
python3 -m pip install --upgrade pip
# Create build
python3 -m build