From: Greg Ercolano <erco@(email surpressed)>
Subject: [Q+A] Softimage/XSI: Can't spawn "xsibatch -r .."
   Date: Tue, 05 Dec 2006 18:26:41 -0500
Msg# 1431
View Complete Thread (1 article) | All Threads
Last Next
> When using submit-softimage, I sometimes get this error on our windows machines:
>
> Can't spawn "xsibatch -r -scene ..etc.."
> --- xsibatch FAILED: EXITCODE=255
>
> It looks like the PATH is set correctly; it's pointing to a directory
> that has 'xsibatch.bat' in it.

    Yes, you probably need to find and change this line in the submit script:

        my $command = "xsibatch -r -scene $opt{Database} " .

    ..and change it to read instead:

        my $xsibatch = ( $G::iswindows ) ? "xsibatch.bat" : "xsibatch";
        my $command = "$xsibatch -r -scene $opt{Database} " .

    This way the script invokes "xsibatch.bat" (instead of just "xsibatch")
    on Windows machines.

    This apparently didn't used to be needed, but in newer versions of XSI,
    the contents of their bin directory changed where this is now needed.

    I'll include this fix in the next release of Rush (102.42a8).

Last Next