source: xtideuniversalbios/trunk/Tools/PostCommitHook.cmd @ 624

Last change on this file since 624 was 624, checked in by krille_n_, 18 months ago

Changes:

  • The BIOS version string has been changed to show the repository revision number instead of the useless "v2.0.0 beta 3+" string. In other words, the seemingly never ending beta is finally over! The version string is now updated by TortoiseSVN client side hook scripts (residing in \Tools) to be used when committing changes to the repository. It should also be possible to use these scripts with other subversion clients under Windows since they are essentially just regular batch (cmd) files!
  • The eSEG_STR macro has been changed to always disable interrupts. The workaround used for the buggy, early revisions of the 8088/8086 CPUs apparently does not work. Many thanks to Jim Leonard (Trixter) for reporting this problem!
  • Minor optimizations to the eBSF and eBSR macros.
File size: 262 bytes
Line 
1@echo off
2if exist ..\CommitInProgress goto NoError1
3echo PostCommitHook was called but no CommitInProgress file could be found!>con
4echo Something is very wrong as this should not happen!>con
5pause<con>con
6exit 1
7:NoError1
8del ..\CommitInProgress
9exit 0
Note: See TracBrowser for help on using the repository browser.