12 lines
372 B
Factor
12 lines
372 B
Factor
! Copyright (C) 2012 Joe Groff.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
USING: environment io.files.temp io.pathnames sequences system
|
|
xdg ;
|
|
IN: io.files.temp.unix
|
|
|
|
M: unix default-temp-directory
|
|
"TMPDIR" os-env [ "/tmp" ] when-empty "factor-temp" append-path ;
|
|
|
|
M: unix default-cache-directory
|
|
xdg-cache-home "factor" append-path absolute-path ;
|