diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-09-03 13:27:27 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-09-03 13:27:27 -0400 |
commit | 61fa7e82d99b9e681c3bd79fd51d7ea411be13d4 (patch) | |
tree | 4dc978de6830067ed3d81deb273bcb0d49853397 | |
parent | 81865b5940395c81a597b3014fcaf33b9a92e9ba (diff) | |
download | kutter-61fa7e82d99b9e681c3bd79fd51d7ea411be13d4.tar.gz kutter-61fa7e82d99b9e681c3bd79fd51d7ea411be13d4.tar.xz kutter-61fa7e82d99b9e681c3bd79fd51d7ea411be13d4.zip |
travis-install: Minor change to virtualenv command-line arguments
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | scripts/travis-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis-install.sh b/scripts/travis-install.sh index b4ab1e41..b0192e7c 100755 --- a/scripts/travis-install.sh +++ b/scripts/travis-install.sh @@ -62,5 +62,5 @@ fi echo -e "\n\n=============== Install python virtualenv\n\n" cd ${MAIN_DIR} -virtualenv ${BUILD_DIR}/python-env -p python2 +virtualenv -p python2 ${BUILD_DIR}/python-env ${BUILD_DIR}/python-env/bin/pip install -r ${MAIN_DIR}/scripts/klippy-requirements.txt |