Thread: ioNiNJA
View Single Post
Old 12-10-2014, 01:53 PM  
PSA9
Member
 
PSA9's Avatar
 
Join Date: Apr 2006
Posts: 54
Angry

Quote:
Originally Posted by Rusher View Post
i am having trouble getting set set ioNJ(sym_inc_dir) to work properly or at all for that matter.
I had the same problem Rusher but what I did to get it to work was edit NiNJALiB.tcl

Code:
NiNJALiB.tcl lines 1488, 1489, and 1497

catch {file mkdir "$ioNJ(sym_inc_dir)/$release"} error
catch {vfs chattr "$ioNJ(sym_inc_dir)/$release" 1 "$pwd"}
catch {file delete -force "$ioNJ(sym_inc_dir)/$release"}
Code:
I changed them to this and works fine and exactly the way I want it to work!

catch {file mkdir "$ioNJ(sym_inc_dir)/$dir"} error
catch {vfs chattr "$ioNJ(sym_inc_dir)/$dir" 1 "$pwd"}
catch {file delete -force "$ioNJ(sym_inc_dir)/$dir"}
PSA9 is offline   Reply With Quote