I have a directory laid out :
-parent
-target
-current
-firstChild
-secondChild
I am trying to direct my package.path from inside "secondChild" to "target" to retrieve other .lua folders stashed there. I have this set up currently
package.path = package.path .. ';../?.lua;../?.lua;../?.lua;target/?.lua'
That doesn't find what I'm looking for and I'm sure that part of my problem is that I do not understand all of the syntaxes. ";../?.lua" says, to me, that I am dropping back to "firstChild" and checking to see if there are lua files?
What am I missing here?