0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-06-02 08:19:40 +02:00

Merge pull request #3 from drone-plugins/fix-pip

Just call pip, without a version
This commit is contained in:
Thomas Boerger 2018-10-19 09:23:35 +02:00 committed by GitHub
commit 2558e5adcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,7 +187,7 @@ func (p *Plugin) requirementsCommand() *exec.Cmd {
}
return exec.Command(
"pip3",
"pip",
args...,
)
}