git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
26 lines
527 B
Python
26 lines
527 B
Python
|
|
|
|
# shell and operating system
|
|
import os,sys
|
|
#sys.path.append( "E:\\Develop\\Projekte\\FreeCADWin\\src\\Tools" )
|
|
|
|
import DistTools,FileTools
|
|
|
|
# line seperator
|
|
ls = os.linesep
|
|
# path seperator
|
|
ps = os.pathsep
|
|
# dir seperator
|
|
ds = os.sep
|
|
|
|
DistName = DistTools.BuildDistName()
|
|
|
|
DistInst = DistName + "_installer.msi"
|
|
DistDir = "../../DistTemp/"
|
|
|
|
#====================================================================
|
|
# copy intaller file
|
|
|
|
FileTools.cpfile("../../Install/FreeCAD.msi",DistDir+DistInst)
|
|
|