From 6fba5e211c2631dd280aa1b33aa573083f306ee7 Mon Sep 17 00:00:00 2001 From: Reef Turner Date: Thu, 8 Aug 2019 13:45:31 +0200 Subject: [PATCH] Install lint deps at user level For users without an admin account, deps must be installed at user level. This does not harm our project, so prefer this. --- tests/lint/lintInstall/sconscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lint/lintInstall/sconscript b/tests/lint/lintInstall/sconscript index b3b27f7b514..52d442635df 100644 --- a/tests/lint/lintInstall/sconscript +++ b/tests/lint/lintInstall/sconscript @@ -23,7 +23,7 @@ doInstall = env.Command( # Install deps from requirements file. [ sys.executable, "-m", "pip", - "install", "-r", "$SOURCE", + "install", "--user", "-r", "$SOURCE", ], # Copy the requirements file, this is used to stop scons from # triggering pip from attempting re-installing when nothing has