mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-29 21:31:02 +00:00
Change format of .pypirc file in line with what distutils expects
This commit is contained in:
parent
ed18293ab3
commit
fc3236b95a
1 changed files with 5 additions and 3 deletions
|
@ -8,9 +8,11 @@ import (
|
||||||
// set up the .pypirc file
|
// set up the .pypirc file
|
||||||
var pypirc = `
|
var pypirc = `
|
||||||
cat <<EOF > $HOME/.pypirc
|
cat <<EOF > $HOME/.pypirc
|
||||||
[pypirc]
|
[distutils]
|
||||||
servers = pypi
|
index-servers =
|
||||||
[server-login]
|
pypi
|
||||||
|
|
||||||
|
[pypi]
|
||||||
username:%s
|
username:%s
|
||||||
password:%s
|
password:%s
|
||||||
EOF`
|
EOF`
|
||||||
|
|
Loading…
Reference in a new issue