io.files.temp: use a startup hook as the temp directory could change from run to run.

locals-and-roots
John Benediktsson 2016-03-16 21:40:25 -07:00
parent 2aadc94b10
commit 73de6246b7
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
! (c)2012 Joe Groff bsd license
USING: combinators io.directories io.pathnames kernel
USING: combinators init io.directories io.pathnames kernel
namespaces system vocabs ;
IN: io.files.temp
@ -35,10 +35,10 @@ SYMBOL: current-cache-directory
{ [ os unix? ] [ "io.files.temp.unix" ] }
} cond require
\ current-temp-directory [
[
default-temp-directory dup make-directories
] initialize
current-temp-directory set-global
\ current-cache-directory [
default-cache-directory dup make-directories
] initialize
current-cache-directory set-global
] "io.files.temp" add-startup-hook