repl: Look for script files in (getcwd).

Fixes <https://bugs.gnu.org/43331>.

* guix/scripts/repl.scm (guix-repl): Replace "." by (getcwd)
* tests/guix-repl.sh: Add test.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Konrad Hinsen 2020-09-11 13:13:26 +02:00 committed by Ludovic Courtès
parent 7194b63833
commit d7f7ed39be
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
2 changed files with 8 additions and 1 deletions

View File

@ -178,7 +178,10 @@ call THUNK."
(lambda ()
(set-program-arguments script)
(set-user-module)
(load-in-vicinity "." (car script)))))
;; When passed a relative file name, 'load-in-vicinity' searches the
;; file in %LOAD-PATH. Thus, pass (getcwd) instead of ".".
(load-in-vicinity (getcwd) (car script)))))
(when (null? script)
;; Start REPL

View File

@ -45,6 +45,10 @@ EOF
test "`guix repl "$tmpfile"`" = "coreutils"
# Make sure that the file can also be loaded when passed as a relative file
# name.
(cd "$(dirname "$tmpfile")"; test "$(guix repl "$(basename "$tmpfile")")" = "coreutils")
cat > "$module_dir/foo.scm"<<EOF
(define-module (foo)