[Scummvm-cvs-logs] SF.net SVN: scummvm:[47265] buildbot/config/scumm.py
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Tue Jan 12 18:25:01 CET 2010
Revision: 47265
http://scummvm.svn.sourceforge.net/scummvm/?rev=47265&view=rev
Author: fingolfin
Date: 2010-01-12 17:24:55 +0000 (Tue, 12 Jan 2010)
Log Message:
-----------
Buildbot: make sure target dir exists before moving stuff there
Modified Paths:
--------------
buildbot/config/scumm.py
Modified: buildbot/config/scumm.py
===================================================================
--- buildbot/config/scumm.py 2010-01-12 12:58:48 UTC (rev 47264)
+++ buildbot/config/scumm.py 2010-01-12 17:24:55 UTC (rev 47265)
@@ -143,6 +143,7 @@
self.command += "mkdir %s && " % name
self.command += "cp -r %s %s/ && " % (" ".join(files), name)
self.command += "tar cvjf %s %s/ && " % (file, name)
+ self.command += "mkdir -p %s/ && " % (self.dstpath)
self.command += "mv %s %s/ && " % (file, self.dstpath)
self.command += "ln -sf %s %s && " % (file, os.path.join(self.dstpath, symlink))
self.command += " rm -rf %s || " % name
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list