Page 1 of 1

module function call

Posted: Thu Aug 07, 2014 3:24 pm
by aitchon
I ran a texis -wipelib to delete all modules from the default db. When I run my script that calls a function from a module, it still looks like it's using a version of the module. I would expect a compile error, since that module doesn't exist anymore. Is it possible that it's looking for a version in another db?

module function call

Posted: Thu Aug 07, 2014 3:44 pm
by Kai
It may not have recompiled the script. Normally updating a module flags all scripts that depend on it as needing recompilation, but -wipelib doesn't do that, as it is just removing the library. Try touching the source of the script, or removing the .vtx file.

module function call

Posted: Thu Aug 07, 2014 3:45 pm
by aitchon
That did it. Thanks Kai!