branch: elpa/raku-mode
commit 0be91cc76e9c024faf50314fe96e77f836665da9
Author: Matias Linares <[email protected]>
Commit: Matias Linares <[email protected]>
Fix cask instalation on travis-ci
This is the command mentioned on the documentation[1]
[1]: https://cask.readthedocs.io/en/latest/guide/installation.html
---
.travis.yml | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index c1758367f5..99a9212a4f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,10 +8,9 @@ before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -yy ${EMACS}-nox
# Install and bootstrap cask
- - curl -fsSkL https://raw.github.com/JJ/cask/master/go | python
+ - curl -fsSL https://raw.githubusercontent.com/cask/cask/master/go | python
- export PATH="${HOME}/.cask/bin:$PATH"
install:
- cask --debug --verbose install
script:
- make compile test
-