From a3f9361c86616b56fc63bb9fec9a354bb3c42970 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 10 Jul 2018 14:10:46 -0400 Subject: [PATCH] already running as root --- .circleci/setup-virtualenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/setup-virtualenv.sh b/.circleci/setup-virtualenv.sh index b2e38cbba..d5ca001be 100755 --- a/.circleci/setup-virtualenv.sh +++ b/.circleci/setup-virtualenv.sh @@ -9,7 +9,7 @@ shift || : # Make sure the ownership of the pip cache directory is correct. The CircleCI # cache management operations seem to mess it up. The cache directory might # not exist if there was no matching cache to restore. -[ -e /tmp/nobody/.cache ] && sudo chown --recursive nobody /tmp/nobody/.cache +[ -e /tmp/nobody/.cache ] && chown --recursive nobody /tmp/nobody/.cache # Set up the virtualenv as a non-root user so we can run the test suite as a # non-root user. See below.