diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-06 18:00:51 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-06 18:00:51 +0100 |
commit | c8af8572bf05f86989d6d576b1a73d6167de5125 (patch) | |
tree | 27b840fbcad368cfbf0294ad7435977e49e77ca9 /tests/guix-lint.sh | |
parent | 50fe945c01e6829d34258ffefc4a5a9d68a908bd (diff) | |
download | guix-c8af8572bf05f86989d6d576b1a73d6167de5125.tar guix-c8af8572bf05f86989d6d576b1a73d6167de5125.tar.gz |
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.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-lint.sh b/tests/guix-lint.sh index 4f9d6db64b..b48cd4e120 100644 --- a/tests/guix-lint.sh +++ b/tests/guix-lint.sh @@ -40,7 +40,7 @@ cat > "$module_dir/foo.scm"<<EOF (description "dummy package. Only used for testing purposes."))) EOF -export GUIX_PACKAGE_PATH=$module_dir +GUIX_PACKAGE_PATH="$module_dir" export GUIX_PACKAGE_PATH grep_warning () |