Changeset 45
- Timestamp:
- 12/22/07 19:22:12 (1 year ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/dev-tools/update-loblaw-test.plx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r44 r45 2 2 3 3 * dev-tools/update-loblaw-test.plx (ProcessRevision): Moved around 4 chdir()s again; Fixed temp file name; Added line to commit log. 4 chdir()s again; Fixed temp file name; Added line to commit log; 5 Added hg update commands. 5 6 6 7 * configs/ldap/slapd.conf: Fixed password-hash to be {SSHA}. trunk/dev-tools/update-loblaw-test.plx
r44 r45 301 301 next unless defined $DUAL_REVISIONED_FILE_LIST{$inputFile}; 302 302 my $outputFile = $DUAL_REVISIONED_FILE_LIST{$inputFile}; 303 304 chdir $LOBLAW_TEST_HG_CHECKOUT or 305 DieLog("unable to change directory to $LOBLAW_TEST_HG_CHECKOUT: $!"); 306 307 read_from_process($HG, 'update'); 308 read_from_process($HG, 'merge'); 309 read_from_process($HG, 'update'); 303 310 304 311 chdir $LOBLAW_TRUNK_CHECKOUT or … … 359 366 chdir $LOBLAW_TEST_HG_CHECKOUT or 360 367 DieLog("unable to change directory to $LOBLAW_TEST_HG_CHECKOUT: $!"); 361 read_from_process($HG, 'push' ) if $commitDone;368 read_from_process($HG, 'push', '-f') if $commitDone; 362 369 &$LOCK_CLEANUP_CODE; 363 370 }