comparison buildHelper.d @ 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 190ba98276b3
children 80660782bffe
comparison
equal deleted inserted replaced
185:13cf8da225ce 186:1a0c1126bc46
151 } 151 }
152 152
153 bool initialSetup() 153 bool initialSetup()
154 { 154 {
155 writeln("Running initial setup..."); 155 writeln("Running initial setup...");
156
157 makePath("bin");
156 158
157 // Download dmd zip 159 // Download dmd zip
158 if(!exists(dmdArchive) && shouldDownload) 160 if(!exists(dmdArchive) && shouldDownload)
159 doSystem("wget "~dmdArchiveBaseURL~dmdArchive); 161 doSystem("wget "~dmdArchiveBaseURL~dmdArchive);
160 162