瀏覽代碼

Remove directory contents if it exists

Bob Mottram 8 年之前
父節點
當前提交
8960b0851a
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. 4
    0
      src/freedombone-app-matrix

+ 4
- 0
src/freedombone-app-matrix 查看文件

@@ -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'