Skip to content

Commit dcd472b

Browse files
committed
Fix pip install command
The --user option does not solicit a value, so this was previously attempting to install a package sharing a name with the current user.
1 parent da98ee3 commit dcd472b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ matrix:
7777

7878
before_install:
7979
- openssl aes-256-cbc -K $encrypted_b354efda2943_key -iv $encrypted_b354efda2943_iv -in .travis.scripts/atlas-uris.txt.enc -out .travis.scripts/atlas-uris.txt -d || true
80-
- pip install "mongo-orchestration>=0.6.7,<1.0" --user `whoami`
80+
- pip install --user "mongo-orchestration>=0.6.7,<1.0"
8181
- .travis.scripts/before_install.sh
8282
- export SERVER_FILENAME=mongodb-linux-x86_64-${SERVER_DISTRO}-${SERVER_VERSION}
8383
- wget -qO- http://fastdl.mongodb.org/linux/${SERVER_FILENAME}.tgz | tar xz

0 commit comments

Comments
 (0)