diff options
Diffstat (limited to 'scripts/laminar/gn3-mypy.run')
-rwxr-xr-x | scripts/laminar/gn3-mypy.run | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/scripts/laminar/gn3-mypy.run b/scripts/laminar/gn3-mypy.run index 43f48e8..f92981b 100755 --- a/scripts/laminar/gn3-mypy.run +++ b/scripts/laminar/gn3-mypy.run @@ -1,15 +1,12 @@ #!/bin/sh set -ex # Abort on first error -CUR_DIR=$PWD -GN3_CI_DIR=$HOME/CI/genenetwork3/ -cd $GN3_CI_DIR -git pull +CUR_DIR=$PWD +cd "$GN3_CI_DIR" # Run Pylint -env GUIX_PACKAGE_PATH="$HOME/guix-bioinformatics:$HOME/guix-past/modules" \ - guix environment --load=guix.scm -- mypy . +"${HOME}/.config/guix/current/bin/guix" shell --file=guix.scm -- mypy . echo Done Running MyPy! -cd $CUR_DIR +cd "$CUR_DIR" |