From 325d59819ec299dc04931ce50cf3e3615337b244 Mon Sep 17 00:00:00 2001 From: Casey Marshall Date: Sun, 25 Feb 2024 09:19:45 -0600 Subject: [PATCH] chore: install tools needs sudo cleanup --- scripts/install_tools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_tools.sh b/scripts/install_tools.sh index 3495617..e222b55 100755 --- a/scripts/install_tools.sh +++ b/scripts/install_tools.sh @@ -8,7 +8,7 @@ CAPNP_VERSION="1.0.2" PROTOC_VERSION="24.3" # Keep in sync with veilid-core/build.rs build_dir=$(mktemp -d) -trap "rm -rf $build_dir" EXIT +trap "sudo rm -rf $build_dir" EXIT cd $build_dir mkdir -p capnp-build protoc-install