2008-09-16 00:20:33 -04:00
|
|
|
! Copyright (C) 2008 Eduardo Cavazos, Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-12-15 02:13:35 -05:00
|
|
|
USING: arrays continuations io.directories
|
|
|
|
io.directories.hierarchy io.files io.launcher kernel
|
|
|
|
mason.common mason.config mason.platform namespaces ;
|
2008-09-16 00:20:33 -04:00
|
|
|
IN: mason.cleanup
|
|
|
|
|
|
|
|
: compress-image ( -- )
|
|
|
|
"bzip2" boot-image-name 2array try-process ;
|
|
|
|
|
|
|
|
: compress-test-log ( -- )
|
|
|
|
"test-log" exists? [
|
|
|
|
{ "bzip2" "test-log" } try-process
|
|
|
|
] when ;
|
|
|
|
|
|
|
|
: cleanup ( -- )
|
|
|
|
builder-debug get [
|
|
|
|
build-dir [
|
|
|
|
compress-image
|
|
|
|
compress-test-log
|
2009-04-13 20:03:17 -04:00
|
|
|
"factor" really-delete-tree
|
2008-09-16 00:20:33 -04:00
|
|
|
] with-directory
|
|
|
|
] unless ;
|