Changeset 393 for trunk/bin

Show
Ignore:
Timestamp:
09/11/08 15:26:17 (4 months ago)
Author:
johnbywater
Message:

Added external dist folder.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk

    • Property svn:externals set to
      dist http://project.kforge.appropriatesoftware.net/foundation/svn/product/domainmodel
  • trunk/bin/domainmodel-sdist-maker

    r388 r393  
    2323os.system("python setup.py sdist") 
    2424 
    25 # Copy distribution to download location. 
     25print "Copying distribution to download location..." 
    2626import sys 
    2727sys.path.append('./src') 
     
    3131os.system(cmd) 
    3232 
     33print "Committing release product..." 
     34cmd = "svn add dist dist/domainmodel-%s.tar.gz" % __version__ 
     35print cmd 
     36if os.system(cmd): 
     37    sys.exit(1) 
     38cmd = "svn ci dist/domainmodel-%s.tar.gz -m\"Created new distribution for domainmodel %s\"" % (__version__, __version__) 
     39print cmd 
     40if os.system(cmd): 
     41    sys.exit(1) 
     42 
    3343 
    3444# Further manual steps.  
    35 print "Test distribution with foundation system tests." 
    3645print "Update domainmodel website to state and point to new release." 
    3746print "Update cheeseshop."