Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Manna <kyle@kylemanna.com>2017-09-15 18:36:09 +0300
committerKyle Manna <kyle@kylemanna.com>2017-09-15 18:47:24 +0300
commitb9f5fafd7f6a1ce0b4b41e75e8d3793b3190aa61 (patch)
tree1ab672db43de502a147b7c91eaddd44dfd14e62a
parent3819497d0f00265097046d64870365aa41ef8418 (diff)
travis: Invoke scons directly
* For some reason this was failing to find the python lib with the previous invocation. * Seems that the newer version of scons fixes an old bug, discard old method.
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 45471a5..e8eca0f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -57,4 +57,4 @@ install:
script:
- pushd generator/proto && make && popd
- - pushd tests && python2 $(which scons) CC=$CC CXX=$CXX && popd
+ - pushd tests && scons CC=$CC CXX=$CXX && popd