Cleans up the comment style to remove author names and clarify the comment as it relates to the code. Using the NOTE (NAME): format is redundant and takes away attention from the purpose of documenting why an action is being taken. Also updates status of TODO and FIXME items, including removing code was a workaround fixed by a recent patch. Change-Id: I2e087be1e204c618d1dbe499b3f69eae34ce656f
17 lines
359 B
Bash
Executable File
17 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if [[ "${PYTHON3}" == "no" ]]; then
|
|
python=python2
|
|
else
|
|
python=python3
|
|
fi
|
|
|
|
${python} $(dirname $0)/fetch_wheels.py
|
|
|
|
mkdir -p /tmp/wheels/
|
|
# Exclude all files starting with '.' as these can be control files for
|
|
# AUFS which have special meaning on AUFS backed file stores.
|
|
tar xf /tmp/wheels.tar.gz --exclude='.*' -C /tmp/wheels/
|