Skip to content

Commit 301476c

Browse files
committed
Fixing .travis.yml
1 parent be845b2 commit 301476c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@ matrix:
55
- name: "Python 3.7 on Linux"
66
python: 3.7
77
dist: xenial
8+
install: pip3 install pyinstaller
9+
script: pyinstaller --clean --windowed --onedir --onefile --add-data "Scripts:Scripts" ProperTree.command
810
- name: "Python 3.7 on macOS"
911
os: osx
1012
osx_image: xcode10.2
1113
language: shell
14+
install: pip3 install pyinstaller
15+
script: pyinstaller --clean --windowed --onedir --onefile --add-data "Scripts:Scripts" ProperTree.command
1216
- name: "Python 3.7 on Windows"
1317
os: windows
1418
language: shell
1519
before_install: choco install python
1620
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
17-
install:
18-
- pip3 install pyinstaller
19-
script: pyinstaller --clean --windowed --onedir --onefile --add-data Scripts:Scripts ProperTree.command
21+
install: pip3 install pyinstaller
22+
script: pyinstaller --clean --windowed --onedir --onefile --add-data "Scripts;Scripts" ProperTree.command

0 commit comments

Comments
 (0)