Changeset 42
- Timestamp:
- 02/03/08 13:28:20 (10 months ago)
- Files:
-
- 1 modified
-
trunk/install/install.CMD (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/install.CMD
r12 r42 1 1 /* Install for WPS-Wizard 2 2 * 3 * (C) Chris Wohlgemuth 2001-2007 3 * (C) Chris Wohlgemuth 2001-2008 4 * 5 * Note that the following license text only applies to this script. 4 6 */ 5 6 7 /* 7 8 * This program is free software; you can redistribute it and/or modify … … 41 42 42 43 43 if rc<>" yes" THEN DO44 if rc<>"1" THEN DO 44 45 /* First phase */ 45 46 46 47 /* Welcome screen */ 48 SAY '' 47 49 SAY nlsStrings.1 /* 'Be sure to have a backup of your INI-files!' */ 48 50 SAY nlsStrings.2 /* 'If not abort NOW' */ … … 59 61 rc=SysIni(, "WPSWizard", "uninstalling", "DELETE:") 60 62 63 /* Mark that we are installing */ 64 rc=SysIni(, "WPSWizard", "installing", 1'0'x) 65 61 66 /* 'Current directory is ' */ 62 67 say nlsStrings.4||curdir … … 134 139 /* Replacing class */ 135 140 'bin\repclass WPObject CWObject' 136 137 rc=SysIni(, "WPSWizard", "installing", "yes") 138 141 139 142 PARSE SOURCE . . theScript 140 143 … … 168 171 SAY "" 169 172 170 DO a=1 0to 1 BY -1173 DO a=15 to 1 BY -1 171 174 SAY "..."||a||"..." 172 175 call SysSleep 1 … … 589 592 590 593 unexpectedExit: 594 595 rc=SysIni(, "WPSWizard", "installing", "DELETE:") 591 596 say '' 592 597 say nlsStrings.59
