Changeset 21
- Timestamp:
- 12/09/07 22:48:14 (1 year ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/dev-tools/update-loblaw-test.plx (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r11 r21 3 3 * dev-tools/update-loblaw-test.plx (ProcessRevision): Added 'push' 4 4 at completion. Added check on commit success. 5 (BuildDualVersionFileList): Fixed regex check. 5 6 6 7 * dev-tools/post-hook-loblaw-test-feed.plx: Ported over from export-cal. trunk/dev-tools/update-loblaw-test.plx
r18 r21 231 231 while (my $line = <FILE_LIST>) { 232 232 next if /^\s*#/; 233 unless (m%^\s*([/a-zA-Z0-9\-\.\_]+)\s+\=\>\s+/([/a-zA-Z0-9\-\.\_]+)\s*$%) { 233 unless ($line =~ 234 m%^\s*([/a-zA-Z0-9\-\.\_]+)\s+\=\>\s+/([/a-zA-Z0-9\-\.\_]+)\s*$%) { 234 235 # I am extremely picky in this regex to be super-security concious 235 236 DieLog("Invalid line in $LOBLAW_LIST_FILE: $line");