diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2017-01-15 19:01:40 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2017-01-15 19:01:40 +0100 |
| commit | 4121b020586123459d64cf33225bcd45a3878f79 (patch) | |
| tree | b5779ccbfd3e03dd9f08726f17bc6baac703da95 | |
| parent | 6efeb550ae81e643dff9c271c5d2174e5a23411b (diff) | |
| download | psutil-4121b020586123459d64cf33225bcd45a3878f79.tar.gz | |
make.bat: fix invalid cmdline
| -rwxr-xr-x | scripts/internal/winmake.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index de8c02e5..e2c1f086 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -174,14 +174,14 @@ def build(): def build_exe(): """Create exe file.""" build() - sh("%s setup.py bdist_wininst -i" % PYTHON) + sh("%s setup.py bdist_wininst" % PYTHON) @cmd def build_wheel(): """Create wheel file.""" build() - sh("%s setup.py bdist_wheel -i" % PYTHON) + sh("%s setup.py bdist_wheel" % PYTHON) @cmd |
