summaryrefslogtreecommitdiff
path: root/tests/guix-lint.sh
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-06 18:00:51 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-06 18:00:51 +0100
commitc8af8572bf05f86989d6d576b1a73d6167de5125 (patch)
tree27b840fbcad368cfbf0294ad7435977e49e77ca9 /tests/guix-lint.sh
parent50fe945c01e6829d34258ffefc4a5a9d68a908bd (diff)
tests: Avoid Bash extension in 'tests/guix-lint.sh'.
* tests/guix-lint.sh: Remove redundant and non-portable 'export'.
Diffstat (limited to 'tests/guix-lint.sh')
-rw-r--r--tests/guix-lint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-lint.sh b/tests/guix-lint.sh
index 4f9d6db64b9..b48cd4e120d 100644
--- a/tests/guix-lint.sh
+++ b/tests/guix-lint.sh
@@ -40,7 +40,7 @@ cat > "$module_dir/foo.scm"<<EOF
40 (description "dummy package. Only used for testing purposes."))) 40 (description "dummy package. Only used for testing purposes.")))
41EOF 41EOF
42 42
43export GUIX_PACKAGE_PATH=$module_dir 43GUIX_PACKAGE_PATH="$module_dir"
44export GUIX_PACKAGE_PATH 44export GUIX_PACKAGE_PATH
45 45
46grep_warning () 46grep_warning ()