Browse Source

Remove directory contents if it exists

Bob Mottram 8 years ago
parent
commit
8960b0851a
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/freedombone-app-matrix

+ 4
- 0
src/freedombone-app-matrix View File

@@ -597,6 +597,10 @@ function install_home_server {
597 597
     if [ ! -d $INSTALL_DIR/matrix ]; then
598 598
         mkdir -p $INSTALL_DIR/matrix
599 599
     fi
600
+    rm -rf /usr/local/lib/python2.7/dist-packages/ldap*
601
+    if [ -d $INSTALL_DIR/matrix ]; then
602
+        rm -rf $INSTALL_DIR/matrix/*
603
+    fi
600 604
     pip install --upgrade --process-dependency-links . -b $INSTALL_DIR/matrix
601 605
     if [ ! "$?" = "0" ]; then
602 606
         echo $'Failed to install matrix home server'