From 322df9f0bd814c90c74089a83ace78643234c795 Mon Sep 17 00:00:00 2001 From: Gregory Moore Date: Sat, 30 Nov 2019 09:53:41 -0800 Subject: [PATCH 1/4] Update README.md spelling correction. Habe to have. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65ffb62..409ef24 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # autorestic High backup level CLI utility for [restic](https://restic.net/). -Autorestic is a wrapper around the amazing [restic](https://restic.net/). While being amazing the restic cli can be a bit overwhelming and difficoult to manage if you habe many different location that you want to backup to multiple locations. This utility is aimed at making this easier 🙂 +Autorestic is a wrapper around the amazing [restic](https://restic.net/). While being amazing the restic cli can be a bit overwhelming and difficoult to manage if you have many different location that you want to backup to multiple locations. This utility is aimed at making this easier 🙂 ![Sketch](./docs/Sketch.png) From 671542cd304984ca344d8ad8b0820221ae8bed1f Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Mon, 2 Dec 2019 11:12:41 +0100 Subject: [PATCH 2/4] Fix #1: fixed broken initialization check under S3 --- src/backend.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend.ts b/src/backend.ts index 832d822..437a23c 100644 --- a/src/backend.ts +++ b/src/backend.ts @@ -4,7 +4,7 @@ import { config, VERBOSE } from './autorestic' import { Backend, Backends } from './types' import { exec, ConfigError } from './utils' -const ALREADY_EXISTS = /(?=.*exists)(?=.*already)(?=.*config).*/ +const ALREADY_EXISTS = /(?=.*already)(?=.*config).*/ export const getPathFromBackend = (backend: Backend): string => { switch (backend.type) { From 13cb764067d6e26bbdf9f46385f199a8d352828e Mon Sep 17 00:00:00 2001 From: Nicco Date: Tue, 3 Dec 2019 09:19:26 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 409ef24..e772032 100644 --- a/README.md +++ b/README.md @@ -127,3 +127,6 @@ backends: Note that the data is automatically encrypted on the server. The key will be generated and added to your config file. Every backend will have a separate key. You should keep a copy of the keys somewhere in case your server dies. Otherwise DATA IS LOST! +## Contributors + +- @ChanceM From 1731ee30b38d521e74de00b8530e23ed64fd84ff Mon Sep 17 00:00:00 2001 From: Nicco Date: Tue, 3 Dec 2019 09:39:51 +0100 Subject: [PATCH 4/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e772032..a19364f 100644 --- a/README.md +++ b/README.md @@ -130,3 +130,4 @@ Note that the data is automatically encrypted on the server. The key will be gen ## Contributors - @ChanceM +- @EliotBerriot