Skip to content

Commit

Permalink
fixes issues with install script created in the last merge causing pa…
Browse files Browse the repository at this point in the history
…ramiko to install improperly as well as clean to break.
  • Loading branch information
matthewD-AVI committed Feb 15, 2019
1 parent bdb5d9c commit 2c36616
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Expand Up @@ -48,8 +48,8 @@ if [ "$1" == "clean" ]; then
rm -rf SecLists
cd "$launch_dir"
cd "$launch_dir"/tools
rm -rf "$launch_dir"/paramiko
rm -rf "$launch_dir"/testssl.sh
rm -rf "$launch_dir"/lib/paramiko
rm -rf "$launch_dir"/lib/testssl.sh
cd "$launch_dir"

exit 0
Expand Down Expand Up @@ -124,7 +124,7 @@ elif [ "$(uname -s)" == "Linux" ]; then
echo "NOT FOUND"
echo -n "Installing paramiko dev: "
sudo git clone https://github.com/paramiko/paramiko &> /dev/null
cd "$launch_dir"/paramiko
cd "$launch_dir"/lib/paramiko
ERROR=$(sudo python3 setup.py install)
if [ $? -ne 0 ]
then
Expand Down

0 comments on commit 2c36616

Please sign in to comment.