aboutsummaryrefslogtreecommitdiff
path: root/scripts/laminar/gn3-lint.run
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/laminar/gn3-lint.run')
-rwxr-xr-xscripts/laminar/gn3-lint.run10
1 files changed, 3 insertions, 7 deletions
diff --git a/scripts/laminar/gn3-lint.run b/scripts/laminar/gn3-lint.run
index 2456740..edf37af 100755
--- a/scripts/laminar/gn3-lint.run
+++ b/scripts/laminar/gn3-lint.run
@@ -3,14 +3,10 @@
set -ex # Abort on first error
CUR_DIR=$PWD
-GN3_CI_DIR=$HOME/CI/genenetwork3/
-
-cd $GN3_CI_DIR
-git pull
+cd "$GN3_CI_DIR"
# Run Pylint
-env GUIX_PACKAGE_PATH="$HOME/guix-bioinformatics:$HOME/guix-past/modules" \
- guix environment --load=guix.scm -- pylint sheepdog/worker.py gn3/ tests
+"${HOME}/.config/guix/current/bin/guix" shell --file=guix.scm -- pylint sheepdog/worker.py gn3/ tests
echo Done Running Pylint!
-cd $CUR_DIR
+cd "$CUR_DIR"