Skip to content

Commit df32f6b

Browse files
committed
Shorten up env var defaulting/exporting
1 parent e872c14 commit df32f6b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@ install:
2323
- popd
2424

2525
before_script:
26-
- ": ${INSTALL_DEST:=/opt/python}"
27-
- ": ${LSB_RELEASE:=$(lsb_release -rs)}"
28-
- ": ${PACKAGES:=pip numpy nose pytest mock wheel}"
29-
- export INSTALL_DEST
30-
- export LSB_RELEASE
31-
- export PACKAGES
26+
- 'export INSTALL_DEST=${INSTALL_DEST:-/opt/python}'
27+
- 'export LSB_RELEASE=${LSB_RELEASE:-$(lsb_release -rs)}'
28+
- 'export PACKAGES=${PACKAGES:-pip numpy nose pytest mock wheel}'
3229

3330
script: ./build-python
3431

0 commit comments

Comments
 (0)