Add guile-repl script to quickly launch a guile repl
It also loads the project path and listens on the default port
This commit is contained in:
parent
39ab9edd25
commit
97a42a6b2b
2 changed files with 5 additions and 1 deletions
3
hall.scm
3
hall.scm
|
@ -19,7 +19,8 @@
|
|||
(programs
|
||||
((directory
|
||||
"scripts"
|
||||
((text-file "launch-dev-shell")))))
|
||||
((text-file "launch-dev-shell")
|
||||
(text-file "guile-repl")))))
|
||||
(documentation
|
||||
((directory "doc" ((texi-file "guile-docs")))
|
||||
(text-file "COPYING")
|
||||
|
|
3
scripts/guile-repl
Executable file
3
scripts/guile-repl
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
guile --listen -L .
|
Loading…
Reference in a new issue