Browse Source

Make migration noisier

bryan 3 years ago
parent
commit
7c0372ed1b
1 changed files with 2 additions and 1 deletions
  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
 }