this repo has no description

Fixed shell linting issue

+3 -2
+1
CHANGELOG.md
··· 25 25 - Add Tangled knot with Spindle CI/CD to k3s cluster (#1) 26 26 27 27 ### Fixed 28 + - Fix shellcheck SC2086 warnings in backup.sh (#62) 28 29 - Fix Spindle CI runner provisioning for all nodes (#61) 29 30 - Fix knot post-receive hooks not being executable (#54) 30 31 - Remove deleted pds-test subdomain from TLS certificate (#48)
+2 -2
k8s/shared/backup.sh
··· 35 35 36 36 rclone copyto "/tmp/${name}-${TIMESTAMP}.${ext}" \ 37 37 ":s3:${BACKUP_BUCKET}/${BACKUP_PREFIX}/db/${name}-${TIMESTAMP}.${ext}" \ 38 - ${S3_OPTS} 38 + "${S3_OPTS}" 39 39 echo "backed up: ${name}-${TIMESTAMP}.${ext}" 40 40 done 41 41 ··· 44 44 [ -z "$src" ] && continue 45 45 rclone copy "$src" \ 46 46 ":s3:${BACKUP_BUCKET}/${BACKUP_PREFIX}/${dest}" \ 47 - ${S3_OPTS} 47 + "${S3_OPTS}" 48 48 echo "copied: ${dest}" 49 49 done 50 50