Log in |
Creating Tar Files for ProductsReleased products should be in some sort of tar file. To help do this, especially on Windows where tar file support is lacking here's a quick Perl Script that can create a tar file for you. To use enter the perl script, argument one is the directory containing the product, argument two the name. Eg: tar.pl lib/python/products/Foo Foo
use Archive::Tar;
use File::Recurse;
# usage and args...
if (scalar(@ARGV) < 2) {
print <
|