diff options
author | Adam Tauber <asciimoo@gmail.com> | 2019-12-17 13:55:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-17 13:55:13 +0000 |
commit | da56bda26542de5697691ff80dac6df876fb366b (patch) | |
tree | d9fed372c4c9765f7c55c1907370f0261a605b27 | |
parent | fb6ff5afcb1ec5771bc149fee25d186198aa7607 (diff) | |
parent | e75af78d7aacdd545825ebb2aee902276e9d55a6 (diff) | |
download | searxng-da56bda26542de5697691ff80dac6df876fb366b.tar.gz searxng-da56bda26542de5697691ff80dac6df876fb366b.zip |
Merge pull request #1457 from hobbestigrou/force_upgrade_requirements
[Scripts] Force upgrade requirements.
-rwxr-xr-x | manage.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,12 +18,12 @@ ACTION="$1" update_packages() { pip install --upgrade pip pip install --upgrade setuptools - pip install -r "$BASE_DIR/requirements.txt" + pip install -Ur "$BASE_DIR/requirements.txt" } update_dev_packages() { update_packages - pip install -r "$BASE_DIR/requirements-dev.txt" + pip install -Ur "$BASE_DIR/requirements-dev.txt" } install_geckodriver() { |