Changeset 4665


Ignore:
Timestamp:
Sep 2, 2021, 3:02:27 PM (4 years ago)
Author:
Andreas Schnellbacher
Message:
  • First revision of convoldmode. It converts old user mode files from before 1.22 to the new hilite files and creates mode .cfg files ready for import to NEPMD.INI.
  • Call this on installation to convert old user mode files if they exist.
Location:
trunk/src/netlabs
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/install/postwpi2.cmd

    r4382 r4665  
    7373
    7474/* Defaults */
    75 ErrorTitle = 'Netlabs EPM Distribution Installation'
     75ErrorTitle = 'netlabs.org EPM Distribution Installation'
    7676
    7777/* Parse args */
     
    168168      'CALL INITREG';           IF (rc \= 0) THEN LEAVE
    169169      'CALL EPMSP';             /* Ignore errors from here */
     170      CALL '..\..\NETLABS\BIN\EPMENV.CMD'       /* Ignore errors from here */
     171      OldModeDir = VALUE( 'NEPMD_USERDIR',, env)'\mode'
     172      IF DirExist( OldModeDir) THEN
     173         'CALL CONVOLDMODE' OldModeDir          /* Ignore errors from here */
    170174
    171175      /* The following doesn't always work reliable. */
     
    184188
    185189EXIT( rc)
     190
     191/* ------------------------------------------------------------------------- */
     192DirExist: PROCEDURE EXPOSE (GlobalVars)
     193   rc = ERROR.NO_ERROR
     194
     195   PARSE ARG Dirname
     196
     197   Found.0 = 0
     198   rcx = SysFileTree( Dirname, 'Found.', 'DO');
     199
     200   RETURN( Found.0 > 0)
    186201
    187202/* ----------------------------------------------------------------------- */
Note: See TracChangeset for help on using the changeset viewer.