Changeset 411

Show
Ignore:
Timestamp:
02/28/07 13:53:55 (2 years ago)
Author:
Gregor
Message:

Fixed to compile again.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/tango/sss/net.d

    r410 r411  
    66 *  
    77 * License: 
    8  *  Copyright (c) 2006  Gregor Richards 
     8 *  Copyright (c) 2006, 2007  Gregor Richards 
    99 *   
    1010 *  Permission is hereby granted, free of charge, to any person obtaining a 
  • branches/tango/sss/uninstall.d

    r409 r411  
    66 *  
    77 * License: 
    8  *  Copyright (c) 2006  Gregor Richards 
     8 *  Copyright (c) 2006, 2007  Gregor Richards 
    99 *   
    1010 *  Permission is hereby granted, free of charge, to any person obtaining a 
     
    4141 
    4242/** Entry to the "uninstall" function */ 
    43 int uninstall(char[][] toolList
     43int uninstall(char[][] toolList, bool quiet = false
    4444{ 
    4545    foreach (tool; toolList) 
     
    4848        char[] manifestFile = manifestPrefix ~ FileConst.PathSeparatorChar ~ tool ~ ".manifest"; 
    4949        if (!(new FileProxy(manifestFile)).exists()) { 
    50             Cout("Tool ")(tool)(" is not installed.").newline; 
     50            if (!quiet) 
     51                Cout("Tool ")(tool)(" is not installed.").newline; 
    5152            return 1; 
    5253        }