Changeset 757
- Timestamp:
- 08/12/07 03:12:02 (1 year ago)
- Files:
-
- trunk/docs/ChangeLog (modified) (1 diff)
- trunk/sss/main.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/ChangeLog
r756 r757 2 2 - Fixed 'set' and 'add' commands (see ticket #102). 3 3 - Added 'error' and 'warn' hook commands (see ticket #103). 4 - Added 'binstall' subcommand (see ticket #105). 4 5 5 6 0.70 from 0.69: trunk/sss/main.d
r746 r757 56 56 DISTCLEAN, 57 57 INSTALL, 58 BINSTALL, 58 59 UNINSTALL, 59 60 INSTALLED, … … 125 126 commandSet = true; 126 127 command = cmd_t.INSTALL; 128 129 } else if (arg == "binstall") { 130 commandSet = true; 131 command = cmd_t.BINSTALL; 127 132 128 133 } else if (arg == "uninstall") { … … 272 277 return sss.install.install(buildElems); 273 278 break; 279 280 case cmd_t.BINSTALL: 281 { 282 int bret = sss.build.build(buildElems); 283 if (bret) return bret; 284 return sss.install.install(buildElems); 285 break; 286 } 274 287 275 288 case cmd_t.UNINSTALL: … … 348 361 ); 349 362 350 } else if (command == cmd_t.UNINSTALL) { 363 } else if (command == cmd_t.BINSTALL) { 364 writefln( 365 `Usage: dsss [dsss options] binstall [binstall options] [sources, binaries or packages]` 366 ); 367 368 } else if (command == cmd_t.UNINSTALL) { 351 369 writefln( 352 370 `Usage: dsss [dsss options] uninstall [uninstall options] <tools or libraries>`
