diff --git a/remote-backup/CHANGELOG.md b/remote-backup/CHANGELOG.md index 419162e..3ade40f 100644 --- a/remote-backup/CHANGELOG.md +++ b/remote-backup/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2023.3.0 + +- Bump base image from 13.0.0 to 13.1.3 +- Fix quoting issue #89 + +**Full Changelog**: https://github.com/ikifar2012/remote-backup-addon/compare/2022.12.1...2023.3.0 + # 2022.12.1 - Fix `scp: dest open` double quoting issue #86 addresses #84 diff --git a/remote-backup/build.yaml b/remote-backup/build.yaml index 7fc6853..c380f64 100644 --- a/remote-backup/build.yaml +++ b/remote-backup/build.yaml @@ -1,10 +1,10 @@ squash: false build_from: - aarch64: ghcr.io/hassio-addons/base/aarch64:13.0.0 - amd64: ghcr.io/hassio-addons/base/amd64:13.0.0 - armhf: ghcr.io/hassio-addons/base/armhf:13.0.0 - armv7: ghcr.io/hassio-addons/base/armv7:13.0.0 - i386: ghcr.io/hassio-addons/base/i386:13.0.0 + aarch64: ghcr.io/hassio-addons/base/aarch64:13.1.3 + amd64: ghcr.io/hassio-addons/base/amd64:13.1.3 + armhf: ghcr.io/hassio-addons/base/armhf:13.1.3 + armv7: ghcr.io/hassio-addons/base/armv7:13.1.3 + i386: ghcr.io/hassio-addons/base/i386:13.1.3 codenotary: signer: cas@mathesonsteplock.ca base_image: codenotary@frenck.dev diff --git a/remote-backup/config.yaml b/remote-backup/config.yaml index ebd0318..86b3be8 100644 --- a/remote-backup/config.yaml +++ b/remote-backup/config.yaml @@ -1,5 +1,5 @@ name: Remote Backup -version: "2022.12.1" +version: "2023.3.0" slug: remote_backup description: Automatically create and transfer HA backups using SFTP (SCP), rsync, or rclone (experimental) image: ikifar/remote-backup-{arch} diff --git a/remote-backup/run.sh b/remote-backup/run.sh index 8f7a33f..570a0bf 100755 --- a/remote-backup/run.sh +++ b/remote-backup/run.sh @@ -266,7 +266,7 @@ function rclone-backups { mkdir -p "${restore_name}" bashio::log.info "Restoring backups to ${restore_name} using rclone" ( - rclone ${DEBUG_FLAG:-} copyto "${rclone_remote_host}:${remote_directory} /backup/${restore_name}/" || ( + rclone ${DEBUG_FLAG:-} copyto "${rclone_remote_host}:${remote_directory}" "/backup/${restore_name}/" || ( bashio::log.error "Error restoring backups from ${rclone_remote_host}:${remote_directory}!" return "${__BASHIO_EXIT_NOK}" )