aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/regression/scripts/download_python.sh
blob: 6329dba4c1e9844f0e4719cd064e1c354e5f333e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
#
# Downloads python with version $1 and stores in into the downloads dir.
#

set -e

XEN_ROOT=$1
VERSION=$2

mkdir -p ${XEN_ROOT}/tests/downloads
wget -q -O ${XEN_ROOT}/tests/downloads/Python-${VERSION}.tgz http://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz