Fix quoting of options on Travis (#3981)
authorAndres Noetzli <andres.noetzli@gmail.com>
Mon, 9 Mar 2020 17:33:32 +0000 (10:33 -0700)
committerGitHub <noreply@github.com>
Mon, 9 Mar 2020 17:33:32 +0000 (12:33 -0500)
commitc1da31ed532cd1767c20d5fc01df893c427e0e8e
tree6904b8d264f7d5f8be7288be836c3455c6ef51f9
parent31e30d52a3fc6ac2a2a2f5e8d4a17a4ca954d8e8
Fix quoting of options on Travis (#3981)

For some reason, Travis has started to treat our `TRAVIS_CVC4_CONFIG`
environment variable wrong, leading to failing builds. Travis started to
wrap the argument into double quotes, so when we had single quotes
around our argument list, the arguments were treated as a single
argument and when we had double quotes, the second pair of double quotes
terminated the first one permaturely. Declaring the environment
variables individually seems to work as expected, so this commit is
moving to that format.
.travis.yml