Index: tools/install_to_venv.sh =================================================================== diff -u -r2c4ed521ba67ea1d459de760ff5a20505602ce96 -r32e628abcbbd3fd70866505d9f2836a6f732ef06 --- tools/install_to_venv.sh (.../install_to_venv.sh) (revision 2c4ed521ba67ea1d459de760ff5a20505602ce96) +++ tools/install_to_venv.sh (.../install_to_venv.sh) (revision 32e628abcbbd3fd70866505d9f2836a6f732ef06) @@ -1,24 +1,23 @@ #!/bin/bash ########################################################################### # -# Copyright (c) 2020 Diality Inc. - All Rights Reserved. +# Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. # -# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN -# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. +# THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN +# WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. # -# @file install_to_venv.sh +# @file install_to_venv.sh # -# @date 20-July-2020 -# @author Peter Lucia +# @author (last) Peter Lucia +# @date (last) 26-Aug-2020 +# @author (original) Peter Lucia +# @date (original) 09-Jul-2020 # -# @brief This script builds dialin then installs it to the provided virtual -# environment -# ############################################################################ cd ../ ./build.sh -repo="$HOME/Project/testsuites/" +repo="$HOME/Projects/testsuites/" read -p "Enter the path to the repository: " -e -i "$repo" repo whl_file="$(pwd)/dist/dialin-0.2.0_DEN_3964_Maintenance_1107444-py3-none-any.whl" read -p "Update the full path to the whl file to install to the virtualenv: " -e -i "$whl_file" whl_file @@ -29,4 +28,4 @@ if [ ! -d "$venv" ]; then echo "Could not find $venv" ; exit 1; fi source venv/bin/activate pip3 uninstall dialin -pip3 install $whl_file \ No newline at end of file +pip3 install $whl_file