Changeset 7951


Ignore:
Timestamp:
2004-08-16T15:54:41+12:00 (20 years ago)
Author:
davidb
Message:

macro directory (if present) now included in exported files so any
collection specific customisation is retained.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/exportcol.pl

    r7257 r7951  
    283283    my $coletcdir = &util::filename_cat ($colldir, "etc");
    284284    my $colimagesdir = &util::filename_cat ($colldir, "images");
     285    my $colmacrosdir = &util::filename_cat ($colldir, "macros");
    285286    # new coll directory
    286287    my $newcoldir = &util::filename_cat ($collectdir, $c);
     
    290291    &util::cp_r ($coletcdir, $newcoldir);
    291292    &util::cp_r ($colimagesdir, $newcoldir) if (-e $colimagesdir);
     293    &util::cp_r ($colmacrosdir, $newcoldir) if (-e $colmacrosdir);
    292294
    293295    # now we need to check the collect.cfg file to make sure it's public
Note: See TracChangeset for help on using the changeset viewer.