Compare commits

...
3 Commits
Author SHA1 Message Date
rdelaageandGitHub 1eb6838b33 Merge cbe506b28a into 530b1b646c 2023-10-02 03:03:58 -07:00
Christoph LoyandGitHub 530b1b646c Update restic to 0.16.0 (#324) 2023-10-02 11:08:28 +02:00
Romain de Laage cbe506b28a Use options on exec command 2022-11-07 08:09:45 +01:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ RUN go mod download
COPY . .
RUN go build
FROM restic/restic:0.15.1
FROM restic/restic:0.16.0
RUN apk add --no-cache rclone bash
COPY --from=builder /app/autorestic /usr/bin/autorestic
ENTRYPOINT []
+1
View File
@@ -143,6 +143,7 @@ func (b Backend) Exec(args []string) error {
return err
}
options := ExecuteOptions{Envs: env}
args = append(args, combineBackendOptions("exec", b)...)
_, out, err := ExecuteResticCommand(options, args...)
if err != nil {
colors.Error.Println(out)