Repalce rsync with cp

This commit is contained in:
2022-03-11 13:28:06 -05:00
parent 7c0372ed1b
commit eab71d7512

View File

@@ -1400,14 +1400,14 @@ migrateLibrary() {
debug "Running: ${FUNCNAME[0]}" debug "Running: ${FUNCNAME[0]}"
declare mc_user_path="$HOME/.jriver" declare mc_user_path="$HOME/.jriver"
declare current_config_path="$mc_user_path/Media Center $MVERSION" declare current_config_path="$mc_user_path/Media Center $MVERSION"
declare previous_config_path="$mc_user_path/Media Center $(( MVERSION - 1 ))" declare previous_config_path="$mc_user_path/Media Center $(( MVERSION - 1 ))"
if [[ ! -d "$current_config_path" ]] && if [[ ! -d "$current_config_path" ]] &&
[[ -d "$previous_config_path" ]]; then [[ -d "$previous_config_path" ]] &&
mkdir -p "$current_config_path"; then
echo "Migrating $previous_config_path to $current_config_path" echo "Migrating $previous_config_path to $current_config_path"
rsync -a "$previous_config_path" "$current_config_path" &>/dev/null cp -a "$previous_config_path" "$current_config_path" &>/dev/null
fi fi
} }