Changeset 657
- Timestamp:
- Oct 21, 2007 8:19:14 PM (13 years ago)
- Location:
- branches/testScripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/testScripts/NBosCommand.py
r656 r657 14 14 #------------------------------------------------------------------------ 15 15 def newer(source,target) : 16 if sys.version[:6] >='2.5.0' :16 if sys.version[:6]<'2.5.0' : 17 17 # Version of python being used does not have distutils 18 18 if not os.path.isfile(source) : sys.exit(1) -
branches/testScripts/nightlyBuild.py
r654 r657 19 19 # (no need to re-run if nothing has changed since prior run) 20 20 # -Figure out how to run configure with no third party code (done, or?) 21 # -Remove markerfile in ThirdParty dir if svn update updated the get... script of the ThirdParty project22 21 23 22 … … 97 96 install3rdPartyCmd=os.path.join(".","get."+d) 98 97 os.chdir(thirdPartyDir) 98 # If the install command has been updated since the last 99 # install, then do a new install 100 if NBosCommand.newer(install3rdPartyCmd,'NBinstalldone') : 101 os.remove('NBinstalldone') 99 102 if not os.path.isfile('NBinstalldone') : 100 103 if os.path.isfile(install3rdPartyCmd) :
Note: See TracChangeset
for help on using the changeset viewer.