瀏覽代碼

Remove directory contents if it exists

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

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

@@ -531,6 +531,9 @@ function install_identity_server {
531 531
     if [ ! -d $INSTALL_DIR/sydent ]; then
532 532
         mkdir -p $INSTALL_DIR/sydent
533 533
     fi
534
+    if [ -d $INSTALL_DIR/sydent ]; then
535
+        rm -rf $INSTALL_DIR/sydent/*
536
+    fi
534 537
     pip install --upgrade --process-dependency-links . -b $INSTALL_DIR/sydent
535 538
     if [ ! "$?" = "0" ]; then
536 539
         echo $'Failed to install matrix identity server'