Skip to content

exit.ifbackgroundcheck

The exit.ifbackgroundcheck command can be used to check whether the comparison process was started with the background check option. If it is a background check, the script is terminated. The following steps are only executed if the comparison process is not a background check.

Syntax

exit.ifbackgroundcheck

Example

Function ScriptBeforeCompare
{
    // If it is a background check, the Script is canceled right at
    // the beginning.
    exit.ifbackgroundcheck

    // otherwise:
    provideArchive
    useTempWorkdirM
    useTempWorkdirS
}