diff options
author | Wolfgang Müller | 2023-05-16 20:43:21 +0200 |
---|---|---|
committer | Wolfgang Müller | 2023-05-16 20:43:21 +0200 |
commit | d95bcd4f35eeec546b1f2d0bec46a6e50e706830 (patch) | |
tree | 879768acbed4ef431a81fa706fb72abe204fca72 | |
parent | 12ed26d1352c9b9278bb858c4e2b44021c5d8c70 (diff) | |
download | lifeboat-d95bcd4f35eeec546b1f2d0bec46a6e50e706830.tar.gz (sig) |
Squash SC2086 for exports0.4.2
Technically the quotes here should not be needed, but shellcheck still
emits an error for them (see [1]). Quoting doesn't hurt here, so just do
that.
[1] https://github.com/koalaman/shellcheck/issues/2443
Diffstat (limited to '')
-rwxr-xr-x | lifeboat | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -84,10 +84,10 @@ shift test -d "$LIFEBOAT_ROOT/$repo" || errx "$repo: no such repository" -export PATH=$HOME/bin:$PATH -export LIFEBOAT_REPO_NAME=$repo -export RESTIC_REPOSITORY=$LIFEBOAT_ROOT/$repo/repo -export RESTIC_PASSWORD_FILE=$LIFEBOAT_ROOT/$repo/credentials/restic +export PATH="$HOME/bin:$PATH" +export LIFEBOAT_REPO_NAME="$repo" +export RESTIC_REPOSITORY="$LIFEBOAT_ROOT/$repo/repo" +export RESTIC_PASSWORD_FILE="$LIFEBOAT_ROOT/$repo/credentials/restic" case "$1" in run) run_backup;; |