This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
# Either install from pip if no $1, or $1 is a path or URL | |
# to an installable placement (such as a local copy of the | |
# repo). | |
PLACEMENT_LOCATION=${1:-openstack-placement} | |
# Make the virtualenv | |
python -m virtualenv -p python3 placetest |