Skip to content

python::pip install args needs extra space to separate multiple args #162

@kpurdon

Description

@kpurdon

python::pip given this option:

install_args => ['--pre', '--upgrade']

will generate pip install --pre--upgrade [something] (note pre and upgrade have no space). To correct this you have to add an additional space after each arg:

install_args => ['--pre ', '--upgrade ']

which will correctly generate pip install --pre --upgrade [something].

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions