GNU bug report logs -
#43331
guix repl doesn't find the script to execute
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 16 Sep 2020 15:35:55 +0200
with message-id <87zh5pn8sk.fsf <at> gnu.org>
and subject line Re: bug#43331: [PATCH] repl: Look for script files in (getcwd).
has caused the debbugs.gnu.org bug report #43331,
regarding guix repl doesn't find the script to execute
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
43331: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=43331
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Example:
$ guix repl moocrr_guix_jupyter/installed-dependencies.scm
Backtrace:
1 (primitive-load-path "./moocrr_guix_jupyter/installed-d…")
In ice-9/boot-9.scm:
1669:16 0 (raise-exception _ #:continuable? _)
ice-9/boot-9.scm:1669:16: In procedure raise-exception:
In procedure primitive-load-path: Unable to find file "./moocrr_guix_jupyter/installed-dependencies.scm" in load path
But the file is there:
$ ls -l moocrr_guix_jupyter/installed-dependencies.scm
-rw-r--r-- 1 hinsen users 783 Sep 11 12:43 moocrr_guix_jupyter/installed-dependencies.scm
And when given the absolute path, guix finds it as well:
$ guix repl `pwd`/moocrr_guix_jupyter/installed-dependencies.scm
122 packages:
cairo <at> 1.16.0
expat <at> 2.2.9
...
[Message part 3 (message/rfc822, inline)]
Hi,
Konrad Hinsen <konrad.hinsen <at> fastmail.net> skribis:
> * guix/scripts/repl.scm (guix-repl): Replace "." by (getcwd)
> ---
> guix/scripts/repl.scm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/guix/scripts/repl.scm b/guix/scripts/repl.scm
> index 3c79e89f8d..80bf1460e9 100644
> --- a/guix/scripts/repl.scm
> +++ b/guix/scripts/repl.scm
> @@ -178,7 +178,7 @@ call THUNK."
> (lambda ()
> (set-program-arguments script)
> (set-user-module)
> - (load-in-vicinity "." (car script)))))
> + (load-in-vicinity (getcwd) (car script)))))
I added a test and a comment and applied.
Thank you!
Ludo’.
This bug report was last modified 4 years and 307 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.