From f9ea4014f35dd20831eb030e004f67a5c89574a8 Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Fri, 26 Jul 2024 16:59:43 +0200 Subject: [PATCH] CI: add sudo for cp --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e38274..7ea304b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -171,7 +171,7 @@ jobs: python -m grpc_tools.protoc --proto_path="proto" --python_out="tests" --grpc_python_out="tests" proto/*.proto fi cargo build - cp target/debug/clnrest /usr/local/libexec/c-lightning/plugins/clnrest/clnrest + sudo cp target/debug/clnrest /usr/local/libexec/c-lightning/plugins/clnrest/clnrest fi - name: Run tests