diff options
Diffstat (limited to 'tools/create-pyenv.sh')
-rwxr-xr-x | tools/create-pyenv.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/create-pyenv.sh b/tools/create-pyenv.sh new file mode 100755 index 0000000..64b1fbf --- /dev/null +++ b/tools/create-pyenv.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +PROJ_ROOT=$(git rev-parse --show-toplevel) +cd $PROJ_ROOT + +python3 -m venv fudenv +. fudenv/bin/activate +pip install cppcheck-codequality +deactivate |