Compare commits

..

2 Commits

Author SHA1 Message Date
dependabot[bot]
e8edf8e1b3 Merge 20773c6531 into 78b0db50e0 2023-04-24 22:02:48 +00:00
dependabot[bot]
20773c6531 Bump restic/restic from 0.15.1 to 0.15.2
Bumps restic/restic from 0.15.1 to 0.15.2.

---
updated-dependencies:
- dependency-name: restic/restic
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-24 22:02:46 +00:00
4 changed files with 3 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ RUN go mod download
COPY . .
RUN go build
FROM restic/restic:0.16.0
FROM restic/restic:0.15.2
RUN apk add --no-cache rclone bash
COPY --from=builder /app/autorestic /usr/bin/autorestic
ENTRYPOINT []

View File

@@ -55,7 +55,7 @@ func initConfig() {
viper.SetConfigFile(cfgFile)
viper.AutomaticEnv()
if viper.ConfigFileUsed() == "" {
colors.Error.Printf("cannot read config file %s\n", cfgFile)
colors.Error.Println("cannot read config file %s\n", cfgFile)
os.Exit(1)
}
} else {

View File

@@ -24,10 +24,6 @@ You can download the right binary from the release page and simply copy it to `/
If you are on macOS you can install through brew: `brew install autorestic`.
### Fedora
Fedora users can install the [autorestic](https://src.fedoraproject.org/rpms/autorestic/) package with `dnf install autorestic`.
### AUR
~~If you are on Arch there is an [AUR Package](https://aur.archlinux.org/packages/autorestic-bin/) (looking for maintainers).~~ - Deprecated

View File

@@ -17,7 +17,7 @@ import (
"github.com/spf13/viper"
)
const VERSION = "1.7.9"
const VERSION = "1.7.7"
type OptionMap map[string][]interface{}
type Options map[string]OptionMap