This commit is contained in:
committer
2024-06-10 21:39:19 -05:00
parent 864d9c075e
commit 957efe7a13

View File

@@ -27,7 +27,7 @@ for input_file in ${input_files[@]}; do
# if input file has not path specified # if input file has not path specified
if [[ ${input_file} != *"/"* ]]; then if [[ ${input_file} != *"/"* ]]; then
input_file=${cwd}/${input_file} input_file="${cwd}/${input_file}"
fi fi
# substitute parts of the old path, from using the symlink folder, to the non-symlink folder # substitute parts of the old path, from using the symlink folder, to the non-symlink folder
@@ -41,7 +41,7 @@ for input_file in ${input_files[@]}; do
# new_file=${original_string//old_substring/new_substring} # new_file=${original_string//old_substring/new_substring}
new_file=${input_file//$sync_dir_sym/$sync_dir} new_file=${input_file//$sync_dir_sym/$sync_dir}
if [[ -f ${new_file} ]] || [[ -d ${new_file} ]] ; then if [[ -f "${new_file}" ]] || [[ -d "${new_file}" ]] ; then
trash-put "${new_file}" trash-put "${new_file}"
else else
echo "error: unable to delete ${new_file}" echo "error: unable to delete ${new_file}"