diff options
author | Wynn Wolf Arbor | 2020-01-14 15:25:32 +0100 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-01-14 15:25:32 +0100 |
commit | e1f2ba7f01a6e03dc911a53d96032cc4151f9ac3 (patch) | |
tree | 7477bd624a0ee5dc92b2d37b206a5dfaa3de2615 | |
parent | 97ec3bd5556b923d35020325de4bef9786879575 (diff) | |
download | lifeboat-e1f2ba7f01a6e03dc911a53d96032cc4151f9ac3.tar.gz |
Use correct path to check whether repo exists0.1.2
-rwxr-xr-x | lifeboat | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ test $# -lt 2 && usage repo=$1 shift -test -d "$repo" || errx "$repo: no such repository" +test -d "$rootdir/$repo" || errx "$repo: no such repository" export LIFEBOAT_REPO_NAME=$repo export RESTIC_REPOSITORY=$rootdir/$repo/repo |