Changeset 30

Show
Ignore:
Timestamp:
10/20/06 20:26:50 (2 years ago)
Author:
jpelcis
Message:

buildme.d no longer fails on linux after a build error.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/buildme.d

    r29 r30  
    3333 * Modified: 
    3434 *  2006-10-16  Changed build to bud. 
     35 *  2006-10-20  Fixed linux sleep issues. 
    3536 * 
    3637 * Copyright: BSD license 
     
    147148    buildCommand.length = buildCommand.length - 1; 
    148149    if (system("bud " ~ buildCommand)) { 
    149         system("pause"); 
     150        version (Windows) { 
     151            system("pause"); 
     152        } else version (linux) { 
     153            system("sleep 5"); 
     154        } 
    150155    } 
    151156}