changeset 186:1a0c1126bc46

Fixed: Build script's initial setup fails if "{ddmd}/bin" doesn't already exist.
author Abscissa
date Tue, 07 Jun 2011 21:01:03 -0400
parents 13cf8da225ce
children b0d41ff5e0df
files buildHelper.d
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/buildHelper.d	Tue Nov 02 08:49:51 2010 +0100
+++ b/buildHelper.d	Tue Jun 07 21:01:03 2011 -0400
@@ -154,6 +154,8 @@
 {
 	writeln("Running initial setup...");
 	
+	makePath("bin");
+	
 	// Download dmd zip
 	if(!exists(dmdArchive) && shouldDownload)
 		doSystem("wget "~dmdArchiveBaseURL~dmdArchive);