]> gitweb.factorcode.org Git - factor.git/blob - basis/io/files/temp/unix/unix.factor
8eee9e8b08b54a4e9e97771ee0dc8df5435f8513
[factor.git] / basis / io / files / temp / unix / unix.factor
1 ! (c)2012 Joe Groff bsd license
2 USING: environment io.files.temp io.pathnames sequences system
3 xdg ;
4 IN: io.files.temp.unix
5
6 M: unix default-temp-directory
7     "TMPDIR" os-env [ "/tmp" ] when-empty "factor-temp" append-path ;
8
9 M: unix default-cache-directory
10     xdg-cache-home "factor" append-path absolute-path ;