summaryrefslogtreecommitdiff
path: root/.github/actions/pkginstall/install-pip.sh
blob: 246bd04752ad5a28ccc31bafc7b504bb00db2855 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash -x

# If called without arguments, just skip the rest
if [[ -z "$@" ]]; then
	exit
fi

python -m pip install --upgrade pip
python -m pip install --upgrade "$@"