diff options
author | sahabi <sahabi@gmail.com> | 2018-01-30 15:10:02 -0600 |
---|---|---|
committer | sahabi <sahabi@gmail.com> | 2018-01-30 15:10:02 -0600 |
commit | 639eb807d94d39658208923f7a8e17ecd8d3ea5f (patch) | |
tree | 257cd79d8cf40e331fcaf5ed2bebb5f974a88b7c /.travis.yml | |
parent | e90cf9f08e143141ca127750f7b1a8e5816a6049 (diff) | |
download | xmobar-639eb807d94d39658208923f7a8e17ecd8d3ea5f.tar.gz xmobar-639eb807d94d39658208923f7a8e17ecd8d3ea5f.tar.bz2 |
Fix travis/CI
The Travis CI fails due to the command sh ./travis.sh src returns an
error due to the fact that travis.sh does not exist.
The fix is removing the command from travis.yml.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 7f3172a..d445e4f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,5 +15,4 @@ install: - wget https://raw.github.com/ndmitchell/hlint/master/misc/travis.sh script: - - sh ./travis.sh src - - cabal configure --enable-tests -fall_extensions && cabal build && cabal test
\ No newline at end of file + - cabal configure --enable-tests -fall_extensions && cabal build && cabal test |