diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2019-04-17 11:24:36 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2019-04-17 11:24:36 -0300 |
commit | 67660acf200e45855084c9750bec4c122bbf8cae (patch) | |
tree | a1bd5f6d201312fc03fc0dcaf4cdf3d4bfa66077 | |
parent | 5641b64f3b051254ff8c9010f312bf35c750810e (diff) | |
download | luarocks-67660acf200e45855084c9750bec4c122bbf8cae.tar.gz luarocks-67660acf200e45855084c9750bec4c122bbf8cae.tar.bz2 luarocks-67660acf200e45855084c9750bec4c122bbf8cae.zip |
travis: use pip (not pip2) with hererocks
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f5264d16..aca8460a 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -121,7 +121,7 @@ jobs: | |||
121 | language: generic | 121 | language: generic |
122 | 122 | ||
123 | before_install: | 123 | before_install: |
124 | - if [ ! -f lua_install/bin/luarocks ]; then pip2 install hererocks; fi | 124 | - if [ ! -f lua_install/bin/luarocks ]; then pip install hererocks; fi |
125 | - if [ ! -f lua_install/bin/luarocks ]; then hererocks lua_install -r^ --$LUA; fi | 125 | - if [ ! -f lua_install/bin/luarocks ]; then hererocks lua_install -r^ --$LUA; fi |
126 | - export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH | 126 | - export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH |
127 | 127 | ||