From e05eab3a929b700c5c71eb79cb5ab0ea745201e2 Mon Sep 17 00:00:00 2001 From: Nicolas Chan Date: Mon, 3 May 2021 15:23:13 -0700 Subject: [PATCH] Mark restic executable --- .github/workflows/ci.yml | 1 + .github/workflows/docker.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 992972d..feea70d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,7 @@ jobs: wget https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_linux_amd64.bz2 bzip2 -d restic_0.12.0_linux_amd64.bz2 sudo cp restic_0.12.0_linux_amd64 /usr/local/bin/restic + sudo chmod +x /usr/local/bin/restic - name: Run tests run: test/test.sh diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7794cbe..cab6284 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -30,6 +30,7 @@ jobs: wget https://github.com/restic/restic/releases/download/v0.12.0/restic_0.12.0_linux_amd64.bz2 bzip2 -d restic_0.12.0_linux_amd64.bz2 sudo cp restic_0.12.0_linux_amd64 /usr/local/bin/restic + sudo chmod +x /usr/local/bin/restic - name: Run tests run: test/test.sh