Changeset 411
- Timestamp:
- 02/28/07 13:53:55 (2 years ago)
- Files:
-
- branches/tango/sss/net.d (modified) (1 diff)
- branches/tango/sss/uninstall.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/tango/sss/net.d
r410 r411 6 6 * 7 7 * License: 8 * Copyright (c) 2006 Gregor Richards8 * Copyright (c) 2006, 2007 Gregor Richards 9 9 * 10 10 * Permission is hereby granted, free of charge, to any person obtaining a branches/tango/sss/uninstall.d
r409 r411 6 6 * 7 7 * License: 8 * Copyright (c) 2006 Gregor Richards8 * Copyright (c) 2006, 2007 Gregor Richards 9 9 * 10 10 * Permission is hereby granted, free of charge, to any person obtaining a … … 41 41 42 42 /** Entry to the "uninstall" function */ 43 int uninstall(char[][] toolList )43 int uninstall(char[][] toolList, bool quiet = false) 44 44 { 45 45 foreach (tool; toolList) … … 48 48 char[] manifestFile = manifestPrefix ~ FileConst.PathSeparatorChar ~ tool ~ ".manifest"; 49 49 if (!(new FileProxy(manifestFile)).exists()) { 50 Cout("Tool ")(tool)(" is not installed.").newline; 50 if (!quiet) 51 Cout("Tool ")(tool)(" is not installed.").newline; 51 52 return 1; 52 53 }
