aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-05-29 14:30:10 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-05-29 13:30:10 -0500
commitaefb6484822f4f034290a6a4abe20618d1b2c8f7 (patch)
tree2685b8d34be7e114dc76f375f12035d6d4704602
parent5ce140441d971bf9ecc5f8f437c2d84ef10b61f1 (diff)
downloadcryptography-aefb6484822f4f034290a6a4abe20618d1b2c8f7.tar.gz
cryptography-aefb6484822f4f034290a6a4abe20618d1b2c8f7.tar.bz2
cryptography-aefb6484822f4f034290a6a4abe20618d1b2c8f7.zip
Random cleanup that shellcheck indicated (#2926)
-rwxr-xr-x.travis/install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index db2e4202..b05ff7be 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -32,8 +32,8 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv global 3.5.1
;;
pypy*)
- pyenv install pypy-$PYPY_VERSION
- pyenv global pypy-$PYPY_VERSION
+ pyenv install "pypy-$PYPY_VERSION"
+ pyenv global "pypy-$PYPY_VERSION"
;;
pypy3)
pyenv install pypy3-2.4.0
@@ -54,8 +54,8 @@ else
PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
- pyenv install pypy-$PYPY_VERSION
- pyenv global pypy-$PYPY_VERSION
+ pyenv install "pypy-$PYPY_VERSION"
+ pyenv global "pypy-$PYPY_VERSION"
fi
if [[ "${OPENSSL}" == "0.9.8" ]]; then
# We use 0.9.8l rather than zh because we have some branches for
='n130' href='#n130'>130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208