瀏覽代碼

Make migration noisier

bryan 3 年之前
父節點
當前提交
7c0372ed1b
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      installJRMC

+ 2 - 1
installJRMC

@@ -1406,7 +1406,8 @@ migrateLibrary() {
 
     if [[ ! -d "$current_config_path" ]] &&
     [[ -d "$previous_config_path" ]]; then
-        rsync -av "$previous_config_path" "$current_config_path"
+        echo "Migrating $previous_config_path to $current_config_path"
+        rsync -a "$previous_config_path" "$current_config_path" &>/dev/null
     fi
 }