diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-08-15 09:01:08 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-08-15 09:01:08 -0400 |
commit | 0f951f848d7ca75037711445504290508bafcea1 (patch) | |
tree | 3dd37a4cad7417ea633aaf335abdfb2331991e11 /scripts | |
parent | c3caa1d370325bdf1e69d16a0e885382687ed33a (diff) |
Wrap controller procedure in a trampoline.
* scripts/guix-web: Trampoline it.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/guix-web | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/guix-web b/scripts/guix-web index df66799..eeefa08 100755 --- a/scripts/guix-web +++ b/scripts/guix-web @@ -23,7 +23,7 @@ (guix-web server)) (spawn-server (make-tcp-server-socket #:port 37146)) -(start-guix-web controller) +(start-guix-web (lambda (path) (controller path))) ;;; Local Variables: ;;; mode: scheme |