585. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/10/2018 8:40:03 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

585.1 Files compared

# Location File Last Modified
1 Thu May 10 13:40:03 2018 UTC
2 MHED_APPS_CIF.zip\VAR v4.2.7\var-resources-4.2.7@54bdc2933ef.zip\var-db\liquibase\build-lib\liquibase.jar\dist liquibase Wed May 2 11:37:12 2012 UTC

585.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 55
Removed 0 0

585.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

585.4 Active regular expressions

No regular expressions were active.

585.5 Comparison detail

        1   #! /bin/sh
        2  
        3   if [ -n "$ {LIQUIBASE _HOME+x}"  ]; then
        4   echo "Liqu ibase Home : $LIQUIBA SE_HOME"
        5   else
        6     echo "Li quibase Ho me is not  set."
        7  
        8     ## resol ve links -  $0 may be  a symlink
        9     PRG="$0"
        10     while [  -h "$PRG"  ] ; do
        11       ls=`ls  -ld "$PRG "`
        12       link=` expr "$ls"  : '.*-> \ (.*\)$'`
        13       if exp r "$link"  : '/.*' >  /dev/null;  then
        14       PRG="$ link"
        15       else
        16       PRG=`d irname "$P RG"`"/$lin k"
        17       fi
        18     done
        19  
        20  
        21     LIQUIBAS E_HOME=`di rname "$PR G"`
        22  
        23     # make i t fully qu alified
        24     LIQUIBAS E_HOME=`cd  "$LIQUIBA SE_HOME" & & pwd`
        25     echo "Li quibase Ho me: $LIQUI BASE_HOME"
        26   fi
        27  
        28    
        29   # build cl asspath fr om all jar s in lib
        30   if [ -f /u sr/bin/cyg path ]; th en
        31     CP=.
        32     for i in  "$LIQUIBA SE_HOME"/l iquibase*. jar; do
        33       i=`cyg path --win dows "$i"`
        34       CP="$C P;$i"
        35     done
        36     for i in  "$LIQUIBA SE_HOME"/l ib/*.jar;  do
        37       i=`cyg path --win dows "$i"`
        38       CP="$C P;$i"
        39     done
        40   else
        41     CP=.
        42     for i in  "$LIQUIBA SE_HOME"/l iquibase*. jar; do
        43       CP="$C P":"$i"
        44     done
        45     for i in  "$LIQUIBA SE_HOME"/l ib/*.jar;  do
        46       CP="$C P":"$i"
        47     done
        48   fi
        49  
        50   # add any  JVM option s here
        51   JAVA_OPTS=
        52  
        53   java -cp " $CP" $JAVA _OPTS liqu ibase.inte gration.co mmandline. Main ${1+" $@"}
        54  
        55