From: greg ercolano <erco@(email surpressed)>
Subject: Re: nuke path
   Date: Tue, 24 Jun 2008 21:20:05 -0400
Msg# 1762
View Complete Thread (10 articles) | All Threads
Last Next
Sent via private email:
% ls -laR /Applications/Nuke5.0v2/*
[..]
/Applications/Nuke5.0v2/Nuke5.0v2.app/Contents/MacOS:
total 112120
drwxr-xr-x   26 1725  wheel       884 Jun  2 16:33 .
drwxr-xr-x    8 1725  wheel       272 May 28 11:15 ..
drwxr-xr-x    6 1725  wheel       204 May 28 11:15 Documentation
drwxr-xr-x   11 1725  wheel       374 May 28 11:14 FrameCycler
drwxr-xr-x    3 1725  wheel       102 May 28 11:14 Frameworks
-rwxr-xr-x    1 1725  wheel  31297444 May 28 11:15 Nuke5.0
[..]

    Hi Gary,

    Thanks for the 'ls -la' listing.

    That looks consistent with my last post, so definitely make both
    changes, specifically:

   $ENV{PATH} = "/Applications/Nuke5.0v2/Nuke5.0v2.app/Contents/MacOS:$ENV{PATH}";

    ..and because the nuke executable is called 'Nuke5.0',
    you'll need to make this change as well:

 BEFORE:    my $command = "nuke $opt{NukeFlags} ".
  AFTER:    my $command = ($G::ismac ? "Nuke5.0" : "nuke") . " $opt{NukeFlags} ".

    If you have any trouble, please follow up.

Last Next