diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-27 11:40:32 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-11-27 11:40:32 +0100 |
commit | 317658754c63e75dd788bcdc421c68eba9419be9 (patch) | |
tree | 2049e611db7f0e997c28b259a969515c73f2702d | |
parent | eb7ec6969a6923036659d78948a02413789655cc (diff) |
Do not hard-code the data directory.
-rw-r--r-- | logikorr.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logikorr.lisp b/logikorr.lisp index 708ddbe..0577d9f 100644 --- a/logikorr.lisp +++ b/logikorr.lisp @@ -11,7 +11,7 @@ (last-name "" :type (or string null)) (first-name "" :type (or string null))) -(defparameter *directory* #p"/Users/mulk/Dropbox/Projekte/Logikorr/") +(defparameter *directory* (asdf:component-pathname (asdf:find-system '#:logikorr))) (defparameter *in-locked-context-p* nil) (defvar *students* nil) |