From f41adcdec84fdca1b0e1b22572adf85837199346 Mon Sep 17 00:00:00 2001 From: hygienic-books Date: Sun, 29 May 2022 03:33:01 +0200 Subject: [PATCH] Remove unnecessary lines breaks --- home/.termux/tasker/android-copy-backups.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/home/.termux/tasker/android-copy-backups.sh b/home/.termux/tasker/android-copy-backups.sh index 2a2b757..e3dd1dd 100644 --- a/home/.termux/tasker/android-copy-backups.sh +++ b/home/.termux/tasker/android-copy-backups.sh @@ -63,9 +63,7 @@ sourceDirChildPathComponents[2]='User' sourceDirChildPathComponents[3]='SwiftBackup' for sourceDir in "${sourceDirChildPathComponents[@]}"; do - rsync -a --delete -e 'ssh -o IdentitiesOnly=yes -o StrictHostKeyChecking=yes -o PasswordAuthentication=no -o ChallengeResponseAuthentication=no -o PubkeyAut -hentication=yes -o IdentityFile='"${sshFilesBaseDir}"'/'"${sshPrivateKeyFileName}"' -o UserKnownHostsFile='"${sshFilesBaseDir}"'/'"${sshKnownHostsFileName}" "${ -sourceDirBasePath}"'/'"${sourceDir%/}" "${target}"'/' + rsync -a --delete -e 'ssh -o IdentitiesOnly=yes -o StrictHostKeyChecking=yes -o PasswordAuthentication=no -o ChallengeResponseAuthentication=no -o PubkeyAuthentication=yes -o IdentityFile='"${sshFilesBaseDir}"'/'"${sshPrivateKeyFileName}"' -o UserKnownHostsFile='"${sshFilesBaseDir}"'/'"${sshKnownHostsFileName}" "${sourceDirBasePath}"'/'"${sourceDir%/}" "${target}"'/' if [[ "${?}" -eq '0' ]]; then printf -- '%s\n' 'Successfully copied '"'${sourceDir}'"' data' fi