Skip to content

Commit 3ea9e84

Browse files
committed
Try to use printf instead of echo for newlines
1 parent 42a4c04 commit 3ea9e84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ before_install:
2121
script:
2222
# Modify sitecustomize.py file for coverage. Allows to cover files run in a subprocess.
2323
- touch "/home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/lib/python${TRAVIS_PYTHON_VERSION}/sitecustomize.py"
24-
- echo $"import coverage\ncoverage.process_startup()\n" > "/home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/lib/python${TRAVIS_PYTHON_VERSION}/sitecustomize.py"
24+
- printf "import coverage\ncoverage.process_startup()\n" > "/home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/lib/python${TRAVIS_PYTHON_VERSION}/sitecustomize.py"
2525
# Install pygccxml
2626
- python setup.py install
2727
# Run the tests with coverage

0 commit comments

Comments
 (0)