Add quotes to package install

postinstall_dependencies (and probably others) need to have the version
specified with == otherwise the command fails due to < and > being known
as redirects.  This adds quotes round the package name, so that bash
doesn't do that.
This commit is contained in:
Xav Paice 2015-12-08 15:37:14 +13:00
parent 4793c14b39
commit 64a6ed4372
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ DEFAULT_GITURL = {
'stackforge': 'https://github.com/stackforge/'
}
DEFAULT_VENV_COMMAND = "virtualenv --no-wheel ."
DEFAULT_INSTALL_COMMAND = "./bin/pip install %s" # noqa
DEFAULT_INSTALL_COMMAND = "./bin/pip install '%s'" # noqa
TEMPLATE_VARS = ('name', 'version', 'gitref', 'stackforge')