2017-08-25 18:34:26 -04:00
|
|
|
! Copyright (C) 2012 Joe Groff.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2016-11-09 00:37:51 -05:00
|
|
|
USING: environment io.files.temp io.pathnames sequences system
|
|
|
|
xdg ;
|
2012-03-31 17:45:59 -04:00
|
|
|
IN: io.files.temp.unix
|
|
|
|
|
2016-11-09 00:37:51 -05:00
|
|
|
M: unix default-temp-directory
|
|
|
|
"TMPDIR" os-env [ "/tmp" ] when-empty "factor-temp" append-path ;
|
2012-03-31 17:45:59 -04:00
|
|
|
|
2016-11-10 12:08:29 -05:00
|
|
|
M: unix default-cache-directory
|
|
|
|
xdg-cache-home "factor" append-path absolute-path ;
|