From: Gary Jaeger <gary@(email surpressed)>
Subject: Re: nuke path
   Date: Wed, 25 Jun 2008 00:34:10 -0400
Msg# 1763
View Complete Thread (10 articles) | All Threads
Last Next
thanks greg. there seems to be this bit also (from the nuke list):

On the issue of command line rendering and the Nuke alias.

I have found that if you are on Leopard and using the default terminal, which is a BASH rather than the old TCSH which Tiger used, you will need to edit your .bash_profile and add the line :

alias nuke="/Applications/Nuke5.0v2/Nuke5.0v2.app/Nuke5.0"

to get the alias working again. Damn extra '=' had me loosing my mind for a bit !

not sure if that impacts rush but I guess it might? I'll try again in the morning

On Jun 24, 2008, at 6:20 PM, greg ercolano wrote:

[posted to rush.general]

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