diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-02-18 22:59:44 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-03-10 11:43:14 +0100 |
commit | 26e67e0280f9e35543c8ea71c6a3d58beb83287d (patch) | |
tree | 130b05fc77e9ddebfee24d92696d5d0d609a429e /tests | |
parent | 7b7e32d5adc22582c0b0b23157432eb7ea0cc5da (diff) | |
download | guix-26e67e0280f9e35543c8ea71c6a3d58beb83287d.tar.gz |
tests: Simplify use of 'local-file' in 'tests/guix-home.sh'.
* tests/guix-home.sh: Remove 'current-filename' trickery since 'local-file' resolves file names relative to the containing file.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-home.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/guix-home.sh b/tests/guix-home.sh index ae3e52c9e1..3b397649cc 100644 --- a/tests/guix-home.sh +++ b/tests/guix-home.sh @@ -81,10 +81,7 @@ trap 'chmod -Rf +w "$test_directory"; rm -rf "$test_directory"' EXIT (service home-bash-service-type (home-bash-configuration (guix-defaults? #t) - (bashrc - (list - (local-file (string-append (dirname (current-filename)) - "/dot-bashrc")))))) + (bashrc (list (local-file "dot-bashrc"))))) (simple-service 'home-bash-service-extension-test home-bash-service-type |