Added sf-scrub-build, for completely freeing up the resources used by a build (ie deleting it from the HD).
Removed import of generated ant script as it had no effect, and was causing strange failures with sf-scrub-build.
#!perl -w
use strict;
# Sorts the input, removes duplicates, and outputs it
# Read it
my @content = <>;
# Sort it, and grep to remove duplicates
my $previous = "\n\n";
@content = grep {$_ ne $previous && ($previous = $_, 1) } sort @content;
# Write it
print @content;