From 4ec77c8cb9bf7d5d96a5cbd08a40fc14d79c4ee5 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Thu, 14 Feb 2019 20:57:25 +0100 Subject: [PATCH] fix websocket uninstall --- scripts/install | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index fc7108d..7e1f93f 100644 --- a/scripts/install +++ b/scripts/install @@ -127,7 +127,7 @@ pushd $final_path virtualenv -p $($final_path/.pythonz/bin/pythonz locate 3.6.6) ve3 ve3/bin/pip3 install -r requirements.txt #Fix current websocket version error (2019-02-14) - ve3/bin/pip3 -y uninstall websockets + ve3/bin/pip3 uninstall -y websockets ve3/bin/pip3 install 'websockets>=6.0,<7.0' popd diff --git a/scripts/upgrade b/scripts/upgrade index 3e70daf..d5bb1ee 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -135,7 +135,7 @@ systemctl daemon-reload #================================================= pushd $final_path - ve3/bin/pip3 -y uninstall websockets + ve3/bin/pip3 uninstall -y websockets ve3/bin/pip3 install 'websockets>=6.0,<7.0' popd