Ignore:
Timestamp:
2012-04-27T16:58:42+12:00 (12 years ago)
Author:
ak19
Message:

On Centos don't need & at end of running cmd sent to dev/null with stderr merged with stdout. Ubuntu didn't need this anyway. This commit will be followed by another, then the zip and tar files of the extension will be generated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/pdf-box/trunk/java/perllib/plugins/PDFBoxConverter.pm

    r25211 r25498  
    7272        # On Ubuntu, java >/dev/null 2>&1 works,
    7373        # but java 2>&1 >/dev/null doesn't work: output goes to screen anyway
    74         $cmd .= " >/dev/null 2>&1 &"; # Need the & at the end for Linux Centos (Ubuntu is fine without it), else parsing plugins list fails
     74        $cmd .= " >/dev/null 2>&1"; # " >/dev/null 2>&1 &" - don't need & at end for Linux Centos anymore (Ubuntu was already fine without it)
    7575        }
    7676
Note: See TracChangeset for help on using the changeset viewer.