From 5377b36a656b0c292023df3bb73c91d31a6aff92 Mon Sep 17 00:00:00 2001 From: Alexius Wadell Date: Sun, 12 Dec 2021 15:52:38 -0500 Subject: [PATCH] Fix permissions on Example.jl during testing Pkg.develop needs write access to Project.toml / Manifest.toml --- test/ci.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/ci.jl b/test/ci.jl index 10d9fb4..f090b06 100644 --- a/test/ci.jl +++ b/test/ci.jl @@ -6,8 +6,9 @@ include("utils.jl") function run_ci_workflow(pkg_dir) # Create temporary default project mktempdir() do temp_project - # Copy pkg_dir to temp_project + # Copy pkg_dir to temp_project, and fix permissions cp(pkg_dir, temp_project; force=true) + chmod(temp_project, 0o700; recursive=true) # Construct CI Command pkgjogger_path = escape_string(PKG_JOGGER_PATH)