racket/collects/planet/cachepath.ss
Jacob Matthews a4adc29d52 .
svn: r1939
2006-01-24 16:41:36 +00:00

11 lines
373 B
Scheme

(module cachepath mzscheme
(require "config.ss")
(provide get-planet-cache-path)
;; get-planet-cache-path : -> path[absolute, file]
;; the path to the cache.ss file for the planet installation
;; SIDE EFFECT: creates the directory if it doesn't already exist
(define (get-planet-cache-path)
(let ((path (build-path (PLANET-DIR) "cache.ss")))
path)))