From 308fd515a83f1332599ca261bdb6643af43b7822 Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 6 May 2020 10:42:09 +0200 Subject: [PATCH] Tried to fix permission problem --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7f64c30..7af3adb 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -21,8 +21,8 @@ EOF } echo "Installing autopep8..." -pip install -q --upgrade pip -pip install -q autopep8 +sudo pip install -q --upgrade pip +sudo pip install -q autopep8 echo "Running autopep8..." autopep8 -i -r $INPUT_CHECKPATH $INPUT_OPTIONS || echo "Problem running autopep8!"