Check-in [19cfb58c4c]
Not logged in
Overview
Comment:Fix some comments.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | vNext
Files: files | file ages | folders
SHA1: 19cfb58c4c9fcd90de3f8458a0ec245a901e81a8
User & Date: test on 2022-02-20 16:34:53
Other Links: branch diff | manifest | tags
Context
2022-02-20
16:44
Update generated documentation. check-in: 029c9867a5 user: test tags: vNext
16:34
Fix some comments. check-in: 19cfb58c4c user: test tags: vNext
16:25
Fix the settings file logic in two ways: 1) do not re-evaluate any settings file (via wildcard matching) that may have already been evaluated based on the list of prefixes. 2) always evaluate settings files relative to the (parent) script directory, not the current directory. check-in: eb868495e1 user: test tags: vNext
Changes

Modified client/1.0/neutral/pkgd.eagle from [3216338fb7] to [3c3ca7ea39].

698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
      }
    } else {
      return false
    }
  }

  #
  # NOTE: This procedure attempts to verify the OpenPGP signature file that
  #       is associated with the specified file.  The forcePgp parameter is
  #       used to force verification attempts to be performed even when the
  #       file does not appear to be an OpenPGP signature file.
  #
  proc maybeVerifyOpenPgpSignature { fileName forcePgp } {
    #
    # NOTE: Is this temporary package file actually just an OpenPGP
    #       signature file?  If so, skip it.
    #
    if {$forcePgp || \







|
|
|
|







698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
      }
    } else {
      return false
    }
  }

  #
  # NOTE: This procedure attempts to verify the specified OpenPGP signature
  #       file.  If the forcePgp parameter is non-zero verification will be
  #       attempted even when the specified file does not appear to be an
  #       OpenPGP signature file.  This procedure may raise script errors.
  #
  proc maybeVerifyOpenPgpSignature { fileName forcePgp } {
    #
    # NOTE: Is this temporary package file actually just an OpenPGP
    #       signature file?  If so, skip it.
    #
    if {$forcePgp || \