]> gitweb.factorcode.org Git - factor.git/blob - basis/io/files/temp/unix/unix.factor
Update some copyright headers to follow the current convention
[factor.git] / basis / io / files / temp / unix / unix.factor
1 ! Copyright (C) 2012 Joe Groff.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: environment io.files.temp io.pathnames sequences system
4 xdg ;
5 IN: io.files.temp.unix
6
7 M: unix default-temp-directory
8     "TMPDIR" os-env [ "/tmp" ] when-empty "factor-temp" append-path ;
9
10 M: unix default-cache-directory
11     xdg-cache-home "factor" append-path absolute-path ;