I added a script to the package maker - under Distribution->Requirements. The problem I have is the script result is always false (at least from the installer prospective). I have simplified my script below. Even this script fails? I've executed this command from terminal and the return value is zero as expected.
I'm using verion 3.04 of package maker.
#!/usr/bin/perl -w
use strict;
exit 0;
I've tried returning 1 as well but the result is always the same.
Anyone have success with a requirement script and package maker?